2025-05-17 04:14:41 +00:00

10 lines
272 B
Python

from fastapi import APIRouter
router = APIRouter()
@router.get("/health", summary="Health check endpoint")
async def health_check():
"""
Health check endpoint that returns a 200 OK status indicating the application is running.
"""
return {"status": "ok"}