Reorganize to fastapi template

This commit is contained in:
2026-01-10 13:22:02 +00:00
parent 7818a3fb44
commit 9f7db47528
41 changed files with 711 additions and 2415 deletions

3
app/api/__init__.py Normal file
View File

@@ -0,0 +1,3 @@
"""API package for routers."""
__all__ = ["health"]

9
app/api/health.py Normal file
View File

@@ -0,0 +1,9 @@
from fastapi import APIRouter
router = APIRouter()
@router.get("/health", tags=["health"])
async def health_check():
"""Minimal health endpoint."""
return {"status": "ok"}