ehttpd 0.13.1

A HTTP server nano-framework, which can be used to create custom HTTP server applications
Documentation
1
2
3
4
5
6
7
//! A HTTP adapter

mod request;
mod response;

pub use crate::http::request::Request;
pub use crate::http::response::Response;