You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
323 B
Python
12 lines
323 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.routes.chat import router as chat_router
|
|
from app.api.routes.mock import router as mock_router
|
|
from app.api.routes.tools import router as tool_router
|
|
|
|
router = APIRouter()
|
|
router.include_router(chat_router)
|
|
router.include_router(mock_router)
|
|
|
|
__all__ = ["router", "tool_router"]
|