()
| 71 | |
| 72 | @app.get("/api/health") |
| 73 | def api_health() -> dict[str, str]: |
| 74 | payload: dict[str, str] = { |
| 75 | "status": "ok", |
| 76 | "service": "displaykit", |
| 77 | "version": app_version, |
| 78 | } |
| 79 | if not prod: |
| 80 | payload["env"] = "development" |
| 81 | return payload |
| 82 | |
| 83 | @app.post("/api/project/summary") |
| 84 | def api_project_summary(project: dict[str, Any] = Body(...)) -> dict[str, Any]: |
nothing calls this directly
no outgoing calls
no test coverage detected