Initial Commit

This commit is contained in:
belviskhoremk
2026-05-12 00:34:21 +00:00
commit d2dc43b16f
57 changed files with 6056 additions and 0 deletions

4
tests/test_health.py Normal file
View File

@@ -0,0 +1,4 @@
async def test_health(anon_client):
r = await anon_client.get("/health")
assert r.status_code == 200
assert r.json()["status"] == "ok"