Add API routing for v1 endpoints and health check functionality

This commit is contained in:
JSC
2025-07-25 11:24:03 +02:00
parent c5c3e8442e
commit c219aaac1a
4 changed files with 41 additions and 6 deletions

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

@@ -0,0 +1,11 @@
"""API package."""
from fastapi import APIRouter
from app.api import v1
# Main API router with /api prefix
api_router = APIRouter(prefix="/api")
# Include version routers
api_router.include_router(v1.api_router)