uhttp 0.7.0

Simple http server for humans
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(clippy::unused_io_amount)]
#![allow(dead_code)]
pub mod body;
pub mod constants;
pub mod http;
pub mod http1;
#[cfg(feature = "http2")]
pub mod http2;
mod result;

#[cfg(feature = "router")]
pub mod router;
pub use http::*;
pub use result::*;