1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-08-31 08:57:00 +02:00

add actix-framed

This commit is contained in:
Nikolay Kim
2019-04-10 15:06:27 -07:00
parent 52aebb3bca
commit 8dc4a88aa6
11 changed files with 909 additions and 0 deletions

13
actix-framed/src/lib.rs Normal file
View File

@@ -0,0 +1,13 @@
mod app;
mod helpers;
mod request;
mod route;
mod state;
// re-export for convinience
pub use actix_http::{http, Error, HttpMessage, Response, ResponseError};
pub use self::app::{App, AppService};
pub use self::request::FramedRequest;
pub use self::route::FramedRoute;
pub use self::state::State;