tbot 0.2.2

Make cool Telegram bots with Rust easily.
Documentation
message_base! {
    struct NewChatTitle {
        /// The title.
        title: String,
    } -> EventLoop::new_chat_title

    fn new(title: String,) -> Self {
        Self {
            title: title,
        }
    }
}