Files
creator/backend/routes.py
2026-06-05 19:54:34 +02:00

9 lines
134 B
Python

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