use crate::prelude::*; use teloxide::utils::command::BotCommands; /// Handles the help command by sending the passwords descryptions 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(()) }