mirror of
https://github.com/actix/actix-web.git
synced 2024-11-14 04:41:15 +00:00
22 lines
462 B
Rust
22 lines
462 B
Rust
|
use actix_web::{web, App, Responder};
|
||
|
|
||
|
use actix_multipart::form::{tempfile::TempFile, text::Text, MultipartForm};
|
||
|
|
||
|
#[derive(MultipartForm)]
|
||
|
struct Form {
|
||
|
#[multipart(limit = "2 KiB")]
|
||
|
description: Text<String>,
|
||
|
|
||
|
#[multipart(limit = "512 MiB")]
|
||
|
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));
|
||
|
}
|