Reorganize to fastapi template

This commit is contained in:
2026-01-10 13:22:02 +00:00
parent 7818a3fb44
commit 9f7db47528
41 changed files with 711 additions and 2415 deletions

11
tests/test_health.py Normal file
View File

@@ -0,0 +1,11 @@
from fastapi.testclient import TestClient
from app.main import app
client = TestClient(app)
def test_health() -> None:
r = client.get("/api/health")
assert r.status_code == 200
assert r.json() == {"status": "ok"}