"Hello world" example
(_req: HttpRequest)
| 132 | |
| 133 | // "Hello world" example |
| 134 | async fn index(_req: HttpRequest) -> impl Responder { |
| 135 | "Hello world!" |
| 136 | } |
| 137 | |
| 138 | #[actix_web::main] |
| 139 | async fn main() -> eyre::Result<()> { |
nothing calls this directly
no outgoing calls
no test coverage detected