| Matthias Andreas Benkard | b291c36 | 2020-11-22 10:22:27 +0100 | [diff] [blame^] | 1 | package eu.mulk.aendggner; |
| 2 | |||||
| 3 | import java.util.concurrent.Callable; | ||||
| 4 | import picocli.CommandLine; | ||||
| 5 | import picocli.CommandLine.Command; | ||||
| 6 | |||||
| 7 | @Command | ||||
| 8 | public class AendGgner implements Callable<Integer> { | ||||
| 9 | |||||
| 10 | public static void main(String... args) { | ||||
| 11 | int exitCode = new CommandLine(new AendGgner()).execute(args); | ||||
| 12 | System.exit(exitCode); | ||||
| 13 | } | ||||
| 14 | |||||
| 15 | @Override | ||||
| 16 | public final Integer call() { | ||||
| 17 | System.out.println("Hi."); | ||||
| 18 | return 0; | ||||
| 19 | } | ||||
| 20 | } | ||||