®️Command registration

The CommandRgistration has two methods to register commands.

Every command must be register in main class.

Gtes instance of command registration

CommandRegistration commandRegistration = commandsModule.getCommandRegistration();

Registering command without tabcompleter

commandRegistration.registerCommand(new MyCommand());

Registering command with tabcompleter

commandRegistration.registerCommandWithTabCompleter(new MyCommand());

Last updated