CLI constructor

CLI()

Initializes the CLI by adding global flags and registering commands.

Implementation

CLI() {
  addGlobalFlags(_parser);
  _registerCommands(_commands);
}