mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2026-04-25 11:18:06 +00:00
20 lines
427 B
Python
Executable File
20 lines
427 B
Python
Executable File
"""Aggregates API routers."""
|
|
|
|
from . import artifacts, execute, execute_sync, health, sessions, uploads, vuegraphs, workflows, websocket, batch, tools
|
|
|
|
ALL_ROUTERS = [
|
|
health.router,
|
|
vuegraphs.router,
|
|
workflows.router,
|
|
uploads.router,
|
|
artifacts.router,
|
|
sessions.router,
|
|
batch.router,
|
|
execute.router,
|
|
execute_sync.router,
|
|
tools.router,
|
|
websocket.router,
|
|
]
|
|
|
|
__all__ = ["ALL_ROUTERS"]
|