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