tbot 0.6.0

Make cool Telegram bots with Rust easily.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Traits for calling methods inferring as much data as possible from
//! the context.

mod callback;
mod chat_methods;
mod forwardable;
mod pinnable;

pub use {
    callback::Callback, chat_methods::ChatMethods, forwardable::Forwardable,
    pinnable::Pinnable,
};