concierge-apis / api /v1 /user_router.py
yashmakan's picture
payment endpoint added for user
2c15cb4
raw
history blame contribute delete
343 Bytes
from fastapi import APIRouter
from api.v1.user_endpoints import chat, auth, user, brand, payment
user_router = APIRouter(prefix='/user')
user_router.include_router(chat.router)
user_router.include_router(auth.router)
user_router.include_router(user.router)
user_router.include_router(brand.router)
user_router.include_router(payment.router)