13 lines
687 B
Python
13 lines
687 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v1.endpoints import auth, wallets, deposits, withdrawals, bots, kyc, admin
|
|
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(auth.router, prefix="/auth", tags=["authentication"])
|
|
api_router.include_router(wallets.router, prefix="/wallets", tags=["wallets"])
|
|
api_router.include_router(deposits.router, prefix="/deposits", tags=["deposits"])
|
|
api_router.include_router(withdrawals.router, prefix="/withdrawals", tags=["withdrawals"])
|
|
api_router.include_router(bots.router, prefix="/bots", tags=["bots"])
|
|
api_router.include_router(kyc.router, prefix="/kyc", tags=["kyc"])
|
|
api_router.include_router(admin.router, prefix="/admin", tags=["admin"]) |