tbot 0.2.2

Make cool Telegram bots with Rust easily.
Documentation
use tbot::prelude::*;

const URL: &str = "https://example.com";
const PORT: u16 = 2000;

fn main() {
    let mut bot = tbot::bot!("BOT_TOKEN").event_loop();

    bot.text(|context| {
        let reply = context
            .send_message_in_reply(&context.text.value)
            .into_future()
            .map_err(|err| {
                dbg!(err);
            });

        tbot::spawn(reply);
    });

    bot.webhook(URL, PORT).start();
}