mirror of
https://github.com/fafhrd91/actix-web
synced 2025-03-14 04:06:27 +01:00
15 lines
317 B
Rust
15 lines
317 B
Rust
//! Middlewares
|
|
mod compress;
|
|
pub use self::compress::{BodyEncoding, Compress};
|
|
|
|
mod condition;
|
|
mod defaultheaders;
|
|
pub mod errhandlers;
|
|
mod logger;
|
|
mod normalize;
|
|
|
|
pub use self::condition::Condition;
|
|
pub use self::defaultheaders::DefaultHeaders;
|
|
pub use self::logger::Logger;
|
|
pub use self::normalize::NormalizePath;
|