Files
appfactory-portal/app/routes/health.py
T
2026-05-27 12:15:11 +02:00

9 lines
119 B
Python

from fastapi import APIRouter
router = APIRouter()
@router.get("/health")
def health():
return {"status": "ok"}