tbot 0.2.2

Make cool Telegram bots with Rust easily.
Documentation
use crate::types::{self, message::Text};

media_message! {
    struct Voice {
        /// The voice.
        voice: types::Voice,
        /// The caption of the voice.
        caption: Text,
    } -> EventLoop::voice

    fn new(caption: Text,) -> Self {
        Self {
            caption: caption,
        }
    }
}