1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00
actix-web/src/middleware/mod.rs

17 lines
378 B
Rust
Raw Normal View History

2019-03-02 06:51:32 +00:00
#[cfg(any(feature = "brotli", feature = "flate2"))]
mod compress;
#[cfg(any(feature = "brotli", feature = "flate2"))]
pub use self::compress::Compress;
2018-03-07 07:38:58 +00:00
2018-04-13 23:02:01 +00:00
mod defaultheaders;
2018-04-03 04:43:50 +00:00
pub use self::defaultheaders::DefaultHeaders;
2019-03-05 18:08:08 +00:00
2019-03-10 04:40:09 +00:00
// #[cfg(feature = "session")]
// pub use actix_session as session;
2019-03-07 03:19:27 +00:00
mod logger;
pub use self::logger::Logger;
2019-03-10 04:40:09 +00:00
#[cfg(feature = "session")]
pub mod identity;