All checks were successful
Continuous Integration / Validate and test changes (push) Successful in 3s
9 lines
196 B
Python
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)
|