pass_manager/src/handlers/commands/default.rs

7 lines
201 B
Rust
Raw Normal View History

2023-04-27 13:25:23 +00:00
use teloxide::{adaptors::Throttle, prelude::*};
pub async fn default(bot: Throttle<Bot>, msg: Message) -> crate::Result<()> {
bot.send_message(msg.chat.id, "Unknown command").await?;
Ok(())
}