cliMain function
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);
}