mirror of
https://github.com/fafhrd91/actix-web
synced 2025-08-19 04:15:38 +02:00
12 lines
238 B
Rust
12 lines
238 B
Rust
//! Multipart form support for Actix web.
|
|
|
|
#![deny(rust_2018_idioms)]
|
|
#![allow(clippy::borrow_interior_mutable_const)]
|
|
|
|
mod error;
|
|
mod extractor;
|
|
mod server;
|
|
|
|
pub use self::error::MultipartError;
|
|
pub use self::server::{Field, Multipart};
|