feat: initial commit

This commit is contained in:
2026-04-18 08:59:04 +02:00
commit 862c0d1703
32 changed files with 8492 additions and 0 deletions

15
service/routers/health.py Normal file
View File

@@ -0,0 +1,15 @@
from fastapi import APIRouter
from ..models.response import HealthResponse
router = APIRouter()
VERSION = "0.1.0"
@router.get("/health", response_model=HealthResponse)
async def health() -> HealthResponse:
return HealthResponse(
status="ok",
version=VERSION,
dynamic_session_ready=True,
)