use teloxide::{adaptors::Throttle, prelude::*, utils::command::BotCommands}; pub async fn help(bot: Throttle, msg: Message) -> crate::Result<()> { bot.send_message(msg.chat.id, super::Command::descriptions().to_string()) .await?; Ok(()) }