15 lines
235 B
Python
15 lines
235 B
Python
"""
|
|
Health check endpoints
|
|
"""
|
|
from fastapi import APIRouter
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/health")
|
|
def health_check():
|
|
"""
|
|
Health check endpoint to verify the application is running
|
|
"""
|
|
return {"status": "ok"}
|