via 1.0.1

An async multi-threaded web framework for people who appreciate simplicity.
Documentation
1
2
3
4
5
6
7
8
9
pub mod body;
pub mod params;

mod request;

pub use body::RequestBody;
pub use request::Request;

pub(crate) use params::PathParams;