telers 1.0.0-beta.2

An asynchronous framework for Telegram Bot API written in Rust
Documentation
//! This module contains inner middlewares.
//!
//! Middlewares are called `inner` if they called before handler, but after outer middlewares and filers.
//! These middlewares have access to the middlewares/handler-chain
//! and can modify the [`request`] (with [`context`] in it)/[`response`].
//!
//! Prefer to use inner middlewares over outer middlewares in some cases:
//! - If you need to call middlewares after filters and before handlers
//! - If you need to manipulate with call of next middleware or handler
//! - If you need to manipulate with [`request`] or [`response`]
//!
//! You can check example of using inner middlewares in `examples/stats_incoming_updates_middleware`.
//!
//! [`request`]: telers::Request
//! [`response`]: telers::event::telegram::HandlerResponse
//! [`context`]: telers::context::Context

pub mod base;
pub mod logging;
pub mod manager;

pub(crate) use base::{boxed_middleware_factory, BoxedCloneMiddlewareService};

pub use base::{wrap_to_next, Middleware, Next};
pub use logging::Logging;
pub use manager::Manager;