mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-23 16:21:06 +01:00
d4b833ccf0
Co-authored-by: Rob Ede <robjtede@icloud.com>
17 lines
338 B
Rust
17 lines
338 B
Rust
use actix_web::{web, App, Responder};
|
|
|
|
use actix_multipart::form::MultipartForm;
|
|
|
|
#[derive(MultipartForm)]
|
|
#[multipart(duplicate_field = "deny")]
|
|
struct Form {}
|
|
|
|
async fn handler(_form: MultipartForm<Form>) -> impl Responder {
|
|
"Hello World!"
|
|
}
|
|
|
|
#[actix_web::main]
|
|
async fn main() {
|
|
App::new().default_service(web::to(handler));
|
|
}
|