2017-10-14 16:59:35 +02:00
|
|
|
//! The `actix-web` prelude for library developers
|
2017-10-10 08:07:32 +02: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 16:59:35 +02:00
|
|
|
//! use actix_web::dev::*;
|
2017-10-10 08:07:32 +02:00
|
|
|
//! ```
|
2017-10-15 07:52:38 +02:00
|
|
|
|
2017-10-24 04:28:23 +02:00
|
|
|
pub use super::*;
|
2017-10-15 07:52:38 +02:00
|
|
|
|
|
|
|
// dev specific
|
|
|
|
pub use task::Task;
|
2017-10-24 04:28:23 +02:00
|
|
|
pub use recognizer::RouteRecognizer;
|