8 lines
259 B
Python
8 lines
259 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.api_v1.endpoints import auth, users
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(auth.router, prefix="/auth", tags=["Authentication"])
|
|
api_router.include_router(users.router, prefix="/users", tags=["Users"])
|