/
githubmirror
/
ChatDev
Обзор
Документация
Войти
/
githubmirror
/
ChatDev
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
server/routes/__init__.py
19 строк
426 B
NA-Wen
add tool list routes
11 мар 2026, 07:11
11 мар 2026, 07:11
5099636
Код
Авторство
О чём код?
"""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"]