()
| 16330 | |
| 16331 | @app.get("/healthz", response_model=HealthzResponse) |
| 16332 | async def healthz() -> HealthzResponse: # pyright: ignore[reportUnusedFunction] |
| 16333 | return HealthzResponse() |
| 16334 | |
| 16335 | @app.get("/metrics") |
| 16336 | async def metrics() -> Response: # pyright: ignore[reportUnusedFunction] |
nothing calls this directly
no test coverage detected
searching dependent graphs…