tbot 0.2.2

Make cool Telegram bots with Rust easily.
Documentation
use futures::Future;

pub trait Sealed {} // used for sealing traits

pub type Client<C> = hyper::Client<C, hyper::Body>;
pub type BoxFuture<I, E> = Box<dyn Future<Item = I, Error = E> + Send>;