()
| 786 | |
| 787 | @app.get("/health") |
| 788 | def health(): |
| 789 | try: |
| 790 | store.registry.list_projects(allow_cache=True) |
| 791 | return Response(status_code=status.HTTP_200_OK) |
| 792 | except Exception: |
| 793 | return Response(status_code=status.HTTP_503_SERVICE_UNAVAILABLE) |
| 794 | |
| 795 | logger.info("REST registry API mounted at /api/v1") |
| 796 |
nothing calls this directly
no test coverage detected