This commit is contained in:
2025-09-08 13:29:43 -07:00
parent 574feb1ea1
commit a62b4e8c12
12 changed files with 442 additions and 336 deletions

View File

@@ -0,0 +1,9 @@
from fastapi import APIRouter
from app.services.health_monitor import HealthMonitor
router = APIRouter()
monitor = HealthMonitor()
@router.get("/health")
async def get_health():
return monitor.check_system_health()