blob: 57f867187f3452f466859ba27790fadf64cf5741 [file] [log] [blame]
package org.apache.xbean.terminal.console;
import org.apache.xbean.command.CommandShell;
public class Main {
public static void main(String[] args) {
CommandShell shell = new CommandShell("localhost");
System.exit(shell.main(new String[]{}, System.in, System.out));
}
}