9 lines
339 B
Python
9 lines
339 B
Python
from fastapi import APIRouter
|
|
from src.presentation.routing.auth import auth_router
|
|
from src.presentation.routing.csrf import csrf_router
|
|
from src.presentation.routing.jwt import jwt_router
|
|
|
|
v1_router = APIRouter(prefix='/v1')
|
|
v1_router.include_router(auth_router)
|
|
v1_router.include_router(csrf_router)
|
|
v1_router.include_router(jwt_router) |