When a cli app has only one command, it should be possible to make it default like this:
- just implement
ICommand
Go.Run<YourImplementationOfICommand>();
which allows for
- no need to decorate with
[Command("whatever")]
- no need to specify command when calling the app