mirror of
https://github.com/actix/actix-extras.git
synced 2025-03-25 22:19:45 +01:00
21 lines
557 B
Rust
21 lines
557 B
Rust
//! The `actix-web` prelude for library developers
|
|
//!
|
|
//! 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)]
|
|
//! use actix_web::dev::*;
|
|
//! ```
|
|
|
|
// dev specific
|
|
pub use task::Task;
|
|
pub use pipeline::Pipeline;
|
|
pub use route::RouteFactory;
|
|
pub use recognizer::RouteRecognizer;
|
|
pub use channel::HttpChannel;
|
|
|
|
pub use application::ApplicationBuilder;
|
|
pub use httpresponse::HttpResponseBuilder;
|
|
pub use cookie::CookieBuilder;
|