telegram_bot_fork/
lib.rs

1//! This crate helps writing bots for the messenger Telegram.
2//! See [readme](https://github.com/telegram-rs/telegram-bot) for details.
3
4extern crate antidote;
5#[macro_use]
6extern crate error_chain;
7extern crate futures;
8extern crate http;
9extern crate telegram_bot_fork_raw;
10extern crate tokio;
11extern crate tokio_timer;
12
13#[cfg(feature = "hyper_connector")]
14extern crate hyper;
15#[cfg(feature = "hyper_connector")]
16extern crate hyper_tls;
17
18mod api;
19mod errors;
20mod future;
21mod macros;
22mod stream;
23
24pub mod connector;
25pub mod prelude;
26pub mod types;
27
28pub use self::{
29    api::Api,
30    errors::{Error, ErrorKind},
31    future::*,
32};
33pub use connector::*;
34pub use prelude::*;
35pub use stream::UpdatesStream;
36pub use types::*;