http-server-rs 0.0.15

Simple, zero-configuration command-line static HTTP server.
1
2
3
4
5
6
7
8
9
10
11
mod bytes;
mod http1_server;
mod res_ext;

pub use self::bytes::*;
pub use self::http1_server::*;
pub use self::res_ext::*;

// pub type HttpRequest = Request<Incoming>;
// pub type HttpResponse = ResponseBuilder;
// pub type HttpResult = anyhow::Result<Response<BoxBody<HyperBytes, Infallible>>>;