()
| 55 | |
| 56 | @app.get("/health") |
| 57 | async def health_check(): |
| 58 | return {"status": "healthy"} |
| 59 | |
| 60 | @app.websocket("/ws/{pipeline_id}") |
| 61 | async def websocket_endpoint(websocket: WebSocket, pipeline_id: str): |
nothing calls this directly
no outgoing calls
no test coverage detected