telers 1.0.0-beta.8

An asynchronous framework for Telegram Bot API written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! Receiving updates via webhooks instead of long polling (feature `webhooks`).
//!
//! - [`axum`] (feature `axum`) mounts the bot as an `axum` router which accepts updates from
//!   the Telegram server: see [`axum::get_updates_router`] and the `examples/axum_webhook`
//!   example for a complete setup

pub(crate) mod secret;

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