This commit is contained in:
Leon
2025-07-15 22:54:35 +02:00
commit f7eda17284
89 changed files with 18535 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from fastapi import APIRouter
from app.core.logging import get_logger
logger = get_logger(__name__)
router = APIRouter()
@router.get("/health")
def health_check():
"""Perform a health check of the API."""
logger.info("Health check endpoint called")
return {"status": "ok"}