2025-05-19 09:12:35 +00:00

11 lines
189 B
Python

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