telers 1.0.0-beta.6

An asynchronous framework for Telegram Bot API written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod error;

pub(crate) use error::format_error_report;

pub mod chat_action;
pub mod text;
pub mod token;

pub use chat_action::{ChatActionGuard, ChatActionSender};

#[cfg(feature = "signal")]
pub mod signal;

#[cfg(feature = "signal")]
pub use signal::shutdown_signal;