telegrax/lib.rs
1//! Send messages as a Telegram bot.
2//!
3//! The library focuses on sending messages for now, at least in version 1.
4//! Later, other functions may be added if needed.
5//!
6//! # Example
7//!
8//! ```no_run
9#![doc = include_str!("../examples/send_message.rs")]
10//!```
11
12pub mod bot;
13pub mod limit;
14pub mod result;