tbot 0.3.0

Make cool Telegram bots with Rust easily.
Documentation
1
2
3
4
5
6
7
8
9
//! Types related to callbacks.

mod game;
pub mod query;

pub use {
    game::Game,
    query::{Kind, Origin, Query},
};