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