concierge-apis / api /v1 /agent_router.py
yashmakan's picture
payment endpoint added for agent
b61a9fe
raw
history blame contribute delete
303 Bytes
from fastapi import APIRouter
from api.v1.agent_endpoints import chat, auth, user, payment
agent_router = APIRouter(prefix='/agent')
agent_router.include_router(chat.router)
agent_router.include_router(auth.router)
agent_router.include_router(user.router)
agent_router.include_router(payment.router)