()
| 871 | |
| 872 | @app.get("/health") |
| 873 | async def health_check(): |
| 874 | return APIResponse( |
| 875 | detail={ |
| 876 | "status": "ok", |
| 877 | "version": APP_VERSION, |
| 878 | "storage": settings.file_storage, |
| 879 | "theme": settings.themesSelect, |
| 880 | } |
| 881 | ) |
| 882 | |
| 883 | |
| 884 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected