2025-05-18 18:02:59 +00:00

11 lines
190 B
Python

from fastapi import APIRouter
router = APIRouter()
@router.get("/health", tags=["health"])
async def health_check():
"""
Health check endpoint.
"""
return {"status": "ok"}