mirror of
https://github.com/actix/actix-extras.git
synced 2025-04-19 01:02:08 +02: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;
|