use teloxide::{adaptors::Throttle, prelude::*}; pub async fn default(bot: Throttle, msg: Message) -> crate::Result<()> { bot.send_message(msg.chat.id, "Unknown command").await?; Ok(()) }