com.thegoate.logging.volume.Diary Maven / Gradle / Ivy
package com.thegoate.logging.volume;
public interface Diary {
String mostRecentEntry();
void writeEntry(String entry);
}
package com.thegoate.logging.volume;
public interface Diary {
String mostRecentEntry();
void writeEntry(String entry);
}