()
| 38 | |
| 39 | #[tokio::main] |
| 40 | async fn main() { |
| 41 | let hello = warp::get() |
| 42 | .map(|| format!("Hello, World!")); |
| 43 | |
| 44 | warp::serve(hello) |
| 45 | .run(([127, 0, 0, 1], 3030)) |
| 46 | .await; |
| 47 | } |
nothing calls this directly
no outgoing calls
no test coverage detected