12 lines
229 B
Python
12 lines
229 B
Python
|
|
"""Health check endpoints."""
|
||
|
|
|
||
|
|
from fastapi import APIRouter
|
||
|
|
|
||
|
|
router = APIRouter(tags=["Health"])
|
||
|
|
|
||
|
|
|
||
|
|
@router.get("/health")
|
||
|
|
async def health_check() -> dict:
|
||
|
|
"""Basic health check endpoint."""
|
||
|
|
return {"status": "healthy"}
|