suspend fun register(bot: Bot, guildId: Snowflake?, builder: ChatInputCreateBuilder.() -> Unit) { if (guildId == null) { bot.kord.createGlobalChatInputCommand(name, description, builder) } else { bot.kord.createGuildChatInputCommand(guildId, name, description, builder) } }