mirror of
https://github.com/sstent/AICyclingCoach.git
synced 2026-01-25 08:34:51 +00:00
9 lines
220 B
Python
9 lines
220 B
Python
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() |