use of io.wring.tk.TkApp in project wring by yegor256.
the class Entrance method main.
/**
* Main entry point.
* @param args Arguments
* @throws IOException If fails
*/
public static void main(final String... args) throws IOException {
final Base base = new DyBase();
try (final Routine routine = new Routine(base)) {
routine.start();
new FtCli(new TkApp(base), args).start(Exit.NEVER);
}
}