org.snapscript.common.command.Console Maven / Gradle / Ivy
package org.snapscript.common.command;
import java.io.IOException;
import java.util.List;
public interface Console {
List readAll() throws IOException;
String readLine() throws IOException;
}