7 lines
155 B
Python
7 lines
155 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v1 import auth
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(auth.router, prefix="/auth", tags=["auth"])
|