salvo_core 0.96.0

Salvo is a powerful web framework that can make your work easier.
Documentation
1
2
3
4
5
6
7
8
//! Request body extractors.
mod file;
mod form;
mod json;

pub use file::{FormFile, FormFiles};
pub use form::FormBody;
pub use json::JsonBody;