telegram_api_rs2/lib.rs
1//! This library offers the possibility to access the Telegram Bot API from Rust.</br>
2//! It is designed to change as little as possible from the well documented <a href="https://core.telegram.org/bots/api">Telegram Bot API</a>.</br>
3//! To learn more about the individual types and methods, please visit <a href="https://core.telegram.org/bots/api">Telegram Bot API</a>.</br>
4//! The issue tracker is located on <a href="https://github.com/jrmbchtl/telegram-bot-rs">Github</a>
5pub mod methods;
6pub mod objects;
7#[macro_use]
8pub mod api_macros;