tbot 0.2.2

Make cool Telegram bots with Rust easily.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::types::passport;

media_message! {
    struct Passport {
        /// The passport data.
        passport_data: passport::Data,
    } -> EventLoop::passport

    fn new() -> Self {
        Self { }
    }
}