1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-22 01:44:20 +00:00
actix-web/src/dev.rs

19 lines
460 B
Rust
Raw Normal View History

2017-10-14 14:59:35 +00:00
//! The `actix-web` prelude for library developers
2017-10-10 06:07:32 +00:00
//!
//! The purpose of this module is to alleviate imports of many common actix traits
//! by adding a glob import to the top of actix heavy modules:
//!
//! ```
//! # #![allow(unused_imports)]
2017-10-14 14:59:35 +00:00
//! use actix_web::dev::*;
2017-10-10 06:07:32 +00:00
//! ```
2017-10-24 02:28:23 +00:00
pub use super::*;
// dev specific
pub use task::Task;
2017-11-25 06:15:52 +00:00
pub use pipeline::Pipeline;
2017-11-27 06:53:28 +00:00
pub use route::RouteFactory;
2017-10-24 02:28:23 +00:00
pub use recognizer::RouteRecognizer;
2017-11-27 06:53:28 +00:00
pub use channel::HttpChannel;