apid_telegram_bot/lib.rs
1//! # apid-telegram-bot
2//!
3//! This crate provides types for Telegram API.
4//! The tpyes implementing [`Debug`], [`Serialize`](serde::Serialize) and [`Deserialize`](serde::Deserialize) traits for covenience.
5//! Also, carefully designed enum variants for ergonomics.
6//!
7//! ## Telegram Parity
8//!
9//! Current type definitions are written for Bot API 6.2 (August 12, 2022)
10//!
11//! Warning:
12//! Currently, the crate has lack of types and very WIP.
13
14#![warn(missing_docs)]
15
16pub mod types;
17
18pub mod calls;
19mod util;