1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! Types in the Telegram Bot API and their deserializers
//!
//! See also [Telegram Bot API](https://core.telegram.org/bots/api).
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serde_json;

/// Bot relative API.
pub mod bot;