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