ChatDev/server/routes/__init__.py
2026-01-10 22:35:32 +08:00

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"]