1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 16:32:59 +01:00
actix-web/actix-framed/src/lib.rs

23 lines
497 B
Rust
Raw Normal View History

2019-07-17 11:08:30 +02:00
#![allow(
clippy::type_complexity,
clippy::new_without_default,
dead_code,
deprecated
)]
2019-04-11 00:06:27 +02:00
mod app;
mod helpers;
mod request;
mod route;
mod service;
2019-04-11 00:06:27 +02:00
mod state;
2019-04-12 20:15:58 +02:00
pub mod test;
2019-04-11 00:06:27 +02:00
// re-export for convinience
pub use actix_http::{http, Error, HttpMessage, Response, ResponseError};
2019-04-11 03:08:28 +02:00
pub use self::app::{FramedApp, FramedAppService};
2019-04-11 00:06:27 +02:00
pub use self::request::FramedRequest;
pub use self::route::FramedRoute;
pub use self::service::{SendError, VerifyWebSockets};
2019-04-11 00:06:27 +02:00
pub use self::state::State;