8393a26
1
2
3
4
5
6
from fastapi import APIRouter from app.api.v1.endpoints import auth api_router = APIRouter() api_router.include_router(auth.router, prefix="/auth", tags=["Authentication"])