mirror of
https://github.com/actix/actix-web.git
synced 2024-11-14 04:41:15 +00:00
8 lines
134 B
Rust
8 lines
134 B
Rust
|
use actix_multipart::form::MultipartForm;
|
||
|
|
||
|
#[derive(MultipartForm)]
|
||
|
#[multipart(duplicate_field = "no")]
|
||
|
struct Form {}
|
||
|
|
||
|
fn main() {}
|