| 38 | |
| 39 | #[derive(Serialize, Deserialize)] |
| 40 | pub struct MyParams { |
| 41 | name: String, |
| 42 | } |
| 43 | |
| 44 | /// Simple handle POST request |
| 45 | async fn handle_post_1(params: web::Form<MyParams>) -> Result<HttpResponse> { |
nothing calls this directly
no outgoing calls
no test coverage detected