Files
avaaz/app/backend/api/v1/router.py
Madava d6b61ae8fb
All checks were successful
Continuous Integration / Validate and test changes (push) Successful in 3s
Add app scaffold and workflows
2025-12-03 08:58:34 +01:00

9 lines
196 B
Python

"""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)