1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-31 11:02:08 +01:00

9 lines
168 B
Rust
Raw Normal View History

2019-07-17 15:08:30 +06:00
#![allow(clippy::borrow_interior_mutable_const)]
mod error;
mod extractor;
mod server;
pub use self::error::MultipartError;
2019-04-13 10:11:07 -07:00
pub use self::server::{Field, Multipart};