registerGlobalCommands method
Implementation
Future<void> registerGlobalCommands ({ required List<CommandBuilder> commands }) async {
await ioc.use<HttpService>().put(
url: "/applications/${_application.id}/commands",
payload: commands.map((command) => command.toJson).toList()
);
}