()
| 861 | |
| 862 | @app.get("/api/v1/config") |
| 863 | async def get_public_config(): |
| 864 | return APIResponse( |
| 865 | detail={ |
| 866 | "config": build_public_config(), |
| 867 | "meta": build_public_meta(), |
| 868 | } |
| 869 | ) |
| 870 | |
| 871 | |
| 872 | @app.get("/health") |
nothing calls this directly
no test coverage detected