use teloxide::{prelude::*, utils::command::BotCommands}; #[tokio::main] async fn main() { pretty_env_logger::init(); log::info!("Starting command bot..."); let bot = Bot::from_env(); teloxide::commands_repl(bot, answer, Command::ty()).await; } #[derive(BotCommands, Clone)] #[command(rename = "lowercase", description = "These commands are supported:")] enum Command { #[command(description = "display this text.")] Help, #[command(description = "handle a username.")] Username(String), #[command(description = "handle a username and an age.", parse_with = "split")] UsernameAndAge { username: String, age: u8 }, } async fn answer(bot: Bot, message: Message, command: Command) -> ResponseResult<()> { match command { Command::Help => { bot.send_message(message.chat.id, Command::descriptions().to_string()).await? } Command::Username(username) => { bot.send_message(message.chat.id, format!("Your username is @{username}.")).await? } Command::UsernameAndAge { username, age } => { bot.send_message( message.chat.id, format!("Your username is @{username} and age is {age}."), ) .await? } }; Ok(()) }