Files
auth/src/presentation/routing/__init__.py
2026-04-12 09:16:16 +03:00

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)