()
| 13 | /// certificate's SANs could never cover a LAN address anyway. |
| 14 | const BIND_ADDR: &str = "127.0.0.1:57404"; |
| 15 | |
| 16 | #[get("/")] |
| 17 | async fn index() -> String { |
| 18 | format!("Stack API") |
| 19 | } |
| 20 | |
| 21 | #[get("/health")] |
| 22 | async fn health() -> String { |
nothing calls this directly
no outgoing calls
no test coverage detected