()
| 37 | |
| 38 | #[get("/")] |
| 39 | async fn hello() -> impl Responder { |
| 40 | web::Html::new("<p>Hello world!</p>".to_owned()) |
| 41 | } |
| 42 | |
| 43 | #[actix_web::main] |
| 44 | async fn main() -> std::io::Result<()> { |
nothing calls this directly
no outgoing calls
no test coverage detected