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/v1/__init__.py Normal file
View File

@@ -0,0 +1,11 @@
"""API v1 package."""
from fastapi import APIRouter
from app.api.v1 import main
# V1 API router with v1 prefix
api_router = APIRouter(prefix="/v1")
# Include all route modules
api_router.include_router(main.router, tags=["main"])