Health check endpoint.
()
| 497 | |
| 498 | @app.get("/") |
| 499 | async def root(): |
| 500 | """Health check endpoint.""" |
| 501 | return {"status": "ok", "service": "Velocity Bridge"} |
| 502 | |
| 503 | |
| 504 | @app.post("/shutdown") |
nothing calls this directly
no outgoing calls
no test coverage detected