webframework/
prelude.rs

1pub use crate::request_filter::*;
2pub use crate::controller;
3pub use crate::routing;
4pub use webframework_core::router::Router;
5pub use webframework_core::router::RouterFuture;
6pub use webframework_core::request::Request;
7pub use webframework_core::request::FromRequest;
8pub use webframework_core::request::FromParameter;
9pub use webframework_core::response::Response;
10pub use webframework_core::response::StatusCode;
11pub use webframework_core::response::Redirect;
12pub use webframework_core::form::Form;
13pub use webframework_core::WebResult;
14pub type WebResponse = WebResult<Response>;