Commit initial

This commit is contained in:
2026-04-15 17:57:12 +02:00
parent 005d8e797e
commit 55516ee10f
269 changed files with 26854 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
def test_health_returns_200(client):
"""GET /health returns 200 with {"status": "ok"}."""
response = client.get("/health")
assert response.status_code == 200
assert response.json() == {"status": "ok"}