huio 0.1.1

HTTP Framework based on Actix-Web
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod http_method;
pub mod request;
pub mod response;
pub mod types;
pub(crate) mod utils;

pub use http_method::HttpMethod;
pub use request::Request;
pub use response::Response;
pub use types::{BoxFuture, Handler, Middleware, Next};