teloxide/examples/simple_commands_bot/src/main.rs

42 lines
1.2 KiB
Rust
Raw Normal View History

2020-02-13 22:23:41 +01:00
use teloxide::{prelude::*, utils::command::BotCommand};
#[derive(BotCommand)]
#[command(rename = "lowercase", description = "These commands are supported:")]
enum Command {
#[command(description = "display this text.")]
Help,
#[command(description = "handle a username.")]
Username(String),
#[command(description = "handle a username and an age.", parse_with = "split")]
UsernameAndAge { username: String, age: u8 },
2020-02-18 23:54:41 +01:00
}
2020-02-13 22:23:41 +01:00
async fn answer(cx: UpdateWithCx<Message>, command: Command) -> ResponseResult<()> {
2020-02-13 22:23:41 +01:00
match command {
2020-02-18 23:54:41 +01:00
Command::Help => cx.answer(Command::descriptions()).send().await?,
Command::Username(username) => {
cx.answer_str(format!("Your username is @{}.", username)).await?
}
Command::UsernameAndAge { username, age } => {
cx.answer_str(format!("Your username is @{} and age is {}.", username, age)).await?
}
2020-02-13 22:23:41 +01:00
};
Ok(())
}
#[tokio::main]
async fn main() {
run().await;
}
async fn run() {
teloxide::enable_logging!();
log::info!("Starting simple_commands_bot...");
2020-02-13 22:23:41 +01:00
let bot = Bot::from_env();
2020-08-02 06:11:09 +02:00
let bot_name: String = panic!("Your bot's name here");
teloxide::commands_repl(bot, bot_name, answer).await;
2020-02-13 22:23:41 +01:00
}