1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-02-21 10:04:49 +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};