Add tests/test_health.py

This commit is contained in:
backend.im 2025-03-15 01:43:52 +00:00
parent 4bbdbdcb63
commit 5d85d44bd3

6
tests/test_health.py Normal file
View File

@ -0,0 +1,6 @@
app = FastAPI()
@app.get("/health")
async def read_health():
return {"status": "ok"}