cliMain function

Future<void> cliMain(
  1. List<String> args
)

Implementation

Future<void> cliMain(List<String> args) async {
  final builder =
      CommandRunner(
          'acter',
          'community communication and casual organizing platform',
        )
        ..addCommand(InfoCommand())
        ..addCommand(SettingsCommand())
        ..addCommand(BackupAndResetCommand());
  await builder.run(args);
  exit(0);
}