()
| 4 | |
| 5 | #[get("/hello")] |
| 6 | async fn hello() -> &'static str { |
| 7 | "Hello world!" |
| 8 | } |
| 9 | |
| 10 | #[post("/stop/{graceful}")] |
| 11 | async fn stop(Path(graceful): Path<bool>, stop_handle: web::Data<StopHandle>) -> HttpResponse { |
nothing calls this directly
no outgoing calls
no test coverage detected