mirror of https://github.com/fafhrd91/actix-web
				
				
				
			
		
			
				
	
	
		
			17 lines
		
	
	
		
			333 B
		
	
	
	
		
			Rust
		
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			333 B
		
	
	
	
		
			Rust
		
	
	
	
| use actix_web::{web, App, Responder};
 | |
| 
 | |
| use actix_multipart::form::MultipartForm;
 | |
| 
 | |
| #[derive(MultipartForm)]
 | |
| #[multipart(deny_unknown_fields)]
 | |
| 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));
 | |
| }
 |