blob: fa79ac4dc8d7da875baa89fe0f67126ddbea2eea [file] [log] [blame]
Matthias Andreas Benkardb291c362020-11-22 10:22:27 +01001package eu.mulk.aendggner;
2
3import java.util.concurrent.Callable;
4import picocli.CommandLine;
5import picocli.CommandLine.Command;
6
7@Command
8public 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}