1 2 3 4 5 6 7 8
//! Request body extractors for the API operation. mod file; mod form; mod json; pub use file::{FormFile, FormFiles}; pub use form::FormBody; pub use json::JsonBody;