via 2.0.0-gm.9

An async multi-threaded web framework for people who appreciate simplicity.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod builder;
mod redirect;
mod response;

#[cfg(feature = "file")]
mod file;

pub(crate) mod body;

#[cfg(feature = "file")]
pub use file::File;

pub use body::{Json, ResponseBody};
pub use builder::{Finalize, ResponseBuilder};
pub use redirect::Redirect;
pub use response::Response;