()
| 47 | |
| 48 | @app.get("/") |
| 49 | async def root(): |
| 50 | return { |
| 51 | "name": settings.APP_NAME, |
| 52 | "version": settings.VERSION, |
| 53 | "status": "operational" |
| 54 | } |
| 55 | |
| 56 | @app.get("/health") |
| 57 | async def health_check(): |
nothing calls this directly
no outgoing calls
no test coverage detected