added comp_systems and all databases

This commit is contained in:
2026-05-06 14:46:50 +03:00
parent 861741bde1
commit fad9fcefac
24 changed files with 1403 additions and 243 deletions

View File

@@ -0,0 +1,18 @@
from fastapi import APIRouter
from fastapi_cache.decorator import cache
router = APIRouter()
@router.get(
"/health",
responses={
200: {
"description": "Is the service running?",
"content": {"application/json": {"example": {"status": "healthy"}}},
},
},
)
@cache()
async def health_check():
return {"status": "healthy"}