ChatDev/server/routes/__init__.py
2026-03-11 12:11:06 +08:00

19 lines
426 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"]