execute method
execute command
Implementation
@override
Future<void> execute() async {
final commandsHelp = _getCommandsHelp(
_commands ?? (_command != null ? [_command!] : commands),
0,
);
LogService.info('''
List available commands:
$commandsHelp
''');
}