1
2
3
4
5
6
7
8
9
10
//! Telegram Application Programming Interfaces (APIs). At the moment, there is
//! only API for sending message from a bot to a chat.
//!
//! ```no_run
#![doc = include_str!("../examples/send_message.rs")]
//!```

pub mod bot;
pub mod error;
pub mod result;