Implement FastAPI Temporal MVP pipeline
This commit is contained in:
13
app/api/routers/health.py
Normal file
13
app/api/routers/health.py
Normal file
@@ -0,0 +1,13 @@
|
||||
"""Health check routes."""
|
||||
|
||||
from fastapi import APIRouter
|
||||
|
||||
router = APIRouter(tags=["health"])
|
||||
|
||||
|
||||
@router.get("/healthz")
|
||||
async def healthcheck() -> dict[str, str]:
|
||||
"""Return a simple health check response."""
|
||||
|
||||
return {"status": "ok"}
|
||||
|
||||
Reference in New Issue
Block a user