Add app scaffold and workflows
All checks were successful
Continuous Integration / Validate and test changes (push) Successful in 3s
All checks were successful
Continuous Integration / Validate and test changes (push) Successful in 3s
This commit is contained in:
8
app/backend/api/v1/router.py
Normal file
8
app/backend/api/v1/router.py
Normal 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)
|
||||
Reference in New Issue
Block a user