mirror of
https://github.com/fafhrd91/actix-web
synced 2025-02-22 20:13:17 +01: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};
|