tbot 0.5.0

Make cool Telegram bots with Rust easily.
Documentation
#[tokio::main]
async fn main() -> Result<(), tbot::errors::MethodCall> {
    let bot = tbot::from_env!("BOT_TOKEN");

    let me = bot.get_me().call().await?;
    dbg!(me);

    Ok(())
}