1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! A Telegram Bot API client library
#![warn(missing_docs)]
#![recursion_limit = "128"]

mod api;
mod executor;
mod handler;
mod never;
mod request;

/// Methods available in the Bot API
pub mod methods;

/// Types available in the Bot API
pub mod types;

/// A "prelude" for users of the library
pub mod prelude;

pub use self::{api::*, handler::*};
use never::Never;

pub use mime;