mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-23 06:51:01 +01:00
21 lines
581 B
Rust
21 lines
581 B
Rust
use teloxide_core::{
|
|
prelude::*,
|
|
types::{DiceEmoji, Me, ParseMode},
|
|
};
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
pretty_env_logger::init();
|
|
|
|
let chat_id =
|
|
ChatId(std::env::var("CHAT_ID").expect("Expected CHAT_ID env var").parse::<i64>()?);
|
|
|
|
let bot = Bot::from_env().parse_mode(ParseMode::MarkdownV2);
|
|
|
|
let Me { user: me, .. } = bot.get_me().await?;
|
|
|
|
bot.send_dice(chat_id).emoji(DiceEmoji::Dice).await?;
|
|
bot.send_message(chat_id, format!("Hi, my name is **{}** 👋", me.first_name)).await?;
|
|
|
|
Ok(())
|
|
}
|