(_req: HttpRequest)
| 1 | use actix_web::{App, HttpRequest, HttpServer, middleware, web}; |
| 2 | |
| 3 | async fn index(_req: HttpRequest) -> &'static str { |
| 4 | "Hello world!" |
| 5 | } |
| 6 | |
| 7 | #[actix_web::main] |
| 8 | #[cfg(unix)] |
nothing calls this directly
no outgoing calls
no test coverage detected