RemoveCustomCommand constructor

RemoveCustomCommand()

Implementation

RemoveCustomCommand()
    : super('remove', 'Remove a custom command.', ['rm', 'delete']) {
  argParser.addOption(
    'name',
    abbr: 'n',
    help: 'Name of the command to remove',
    mandatory: true,
  );
}