package se.progic.javalab;
import picocli.CommandLine;
public class App {
public static void main(String... args) {
final CommandLine commandLine = new CommandLine(new Cli());
final int returnCode = commandLine.execute(args);
System.exit(returnCode);
}
}