telers 1.0.0-beta.2

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
16
17
//! This module contains inner and outer middlewares.
//!
//! Middlewares are designed to be `inner` and `outer`.
//! You can read more about each middleware type in their modules:
//! - [`inner module`]
//! - [`outer module`]
//!
//! [`inner module`]: inner
//! [`outer module`]: outer

#![allow(clippy::module_name_repetitions)]

pub mod inner;
pub mod outer;

pub use inner::{Middleware as InnerMiddleware, Next};
pub use outer::Middleware as OuterMiddleware;