mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 16:32:59 +01:00
19 lines
396 B
Rust
19 lines
396 B
Rust
|
use actix_web::{web, App, Responder};
|
||
|
|
||
|
use actix_multipart::form::{tempfile::TempFile, text::Text, MultipartForm};
|
||
|
|
||
|
#[derive(MultipartForm)]
|
||
|
struct Form {
|
||
|
category: Option<Text<String>>,
|
||
|
files: Vec<TempFile>,
|
||
|
}
|
||
|
|
||
|
async fn handler(_form: MultipartForm<Form>) -> impl Responder {
|
||
|
"Hello World!"
|
||
|
}
|
||
|
|
||
|
#[actix_web::main]
|
||
|
async fn main() {
|
||
|
App::new().default_service(web::to(handler));
|
||
|
}
|