Skip to main content

fastapi_http/
multipart.rs

1//! Multipart form data parser.
2//!
3//! `fastapi-http` re-exports the canonical multipart implementation from `fastapi-core`
4//! so both the HTTP server and core extractors share identical behavior.
5
6pub use fastapi_core::multipart::{
7    DEFAULT_MAX_FIELDS, DEFAULT_MAX_FILE_SIZE, DEFAULT_MAX_TOTAL_SIZE, MultipartConfig,
8    MultipartError, MultipartForm, MultipartParser, Part, UploadFile, parse_boundary,
9};