1 2 3 4 5 6 7 8 9
use tele_macros::BotCommands as DeriveBotCommands; #[derive(DeriveBotCommands)] enum InvalidCommandName { #[command(rename = "bad-name", description = "invalid command")] BadName, } fn main() {}