1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-03-14 20:26:26 +01:00

15 lines
317 B
Rust
Raw Normal View History

2019-03-24 11:29:35 -07:00
//! Middlewares
2019-03-01 22:51:32 -08:00
mod compress;
pub use self::compress::{BodyEncoding, Compress};
2019-03-26 15:14:32 -07:00
2019-09-12 21:52:46 +06:00
mod condition;
2018-04-13 16:02:01 -07:00
mod defaultheaders;
2019-03-24 11:32:30 -07:00
pub mod errhandlers;
mod logger;
2019-04-20 11:18:04 -07:00
mod normalize;
2019-09-12 21:52:46 +06:00
pub use self::condition::Condition;
2018-04-02 21:43:50 -07:00
pub use self::defaultheaders::DefaultHeaders;
pub use self::logger::Logger;
2019-04-20 11:18:04 -07:00
pub use self::normalize::NormalizePath;