()
| 31 | } |
| 32 | |
| 33 | async fn index() -> Result<HttpResponse> { |
| 34 | Ok(HttpResponse::Ok() |
| 35 | .content_type("text/html; charset=utf-8") |
| 36 | .body(include_str!("../static/form.html"))) |
| 37 | } |
| 38 | |
| 39 | #[derive(Serialize, Deserialize)] |
| 40 | pub struct MyParams { |
nothing calls this directly
no outgoing calls
no test coverage detected