volo-http 0.5.5

HTTP framework implementation of volo.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Utilities at server-side.

mod file_response;
mod serve_dir;

pub use file_response::FileResponse;
pub use serve_dir::ServeDir;

pub mod client_ip;
#[cfg(feature = "multipart")]
pub mod multipart;
#[cfg(feature = "ws")]
pub mod ws;