Add app scaffold and workflows
All checks were successful
Continuous Integration / Validate and test changes (push) Successful in 3s

This commit is contained in:
2025-12-03 08:58:34 +01:00
parent 5a8b773e40
commit d6b61ae8fb
51 changed files with 10252 additions and 3 deletions

View File

@@ -0,0 +1 @@
"""API package with versioned routers."""

View File

@@ -0,0 +1 @@
"""API v1 package."""

View File

@@ -0,0 +1,8 @@
"""Version 1 API router aggregator for features."""
from fastapi import APIRouter
from features.auth.router import router as auth_router
router = APIRouter()
router.include_router(auth_router)