()
| 799 | async fn healthz() -> impl IntoResponse { |
| 800 | Json(HealthStatus { status: "ok" }) |
| 801 | } |
| 802 | |
| 803 | async fn landing_page() -> Html<&'static str> { |
| 804 | Html(include_str!("../web/index.html")) |
| 805 | } |
| 806 | |
| 807 | async fn browser_page() -> Html<&'static str> { |
| 808 | Html(include_str!("../web/browser.html")) |
| 809 | } |
no outgoing calls
no test coverage detected