1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-11 01:39:33 +00:00
actix-web/src/middleware/mod.rs

15 lines
327 B
Rust
Raw Normal View History

2019-03-24 18:29:35 +00:00
//! Middlewares
2019-03-02 06:51:32 +00:00
mod compress;
pub use self::compress::{BodyEncoding, Compress};
2019-03-26 22:14:32 +00:00
2019-11-20 17:33:22 +00:00
//mod condition;
2018-04-13 23:02:01 +00:00
mod defaultheaders;
2019-11-20 17:33:22 +00:00
//pub mod errhandlers;
mod logger;
2019-11-20 17:33:22 +00:00
//mod normalize;
2019-11-20 17:33:22 +00:00
//pub use self::condition::Condition;
2018-04-03 04:43:50 +00:00
pub use self::defaultheaders::DefaultHeaders;
pub use self::logger::Logger;
2019-11-20 17:33:22 +00:00
//pub use self::normalize::NormalizePath;