Files
roboco/roboco/api/routes/__init__.py
T
Renn F c3d325fe4b refactor: remove dead Test/CI route stack
Trashed roboco/api/routes/test.py, roboco/api/schemas/test.py, and roboco/services/test_runner.py — 744 LOC across 3 files. The routes (/test/run, /test/lint, /test/format, /test/typecheck, /test/build) were the API surface for the deleted roboco/mcp/test/test_server.py MCP. With that MCP server gone (Phase 4 T9) no caller remains: panel never used /test/*, and no Python service imports TestRunnerService outside the deleted MCP.
2026-05-02 03:25:02 +02:00

46 lines
591 B
Python

"""
API Routes
All FastAPI route modules.
"""
from roboco.api.routes import (
agents,
channels,
dashboard,
docs,
git,
health,
journals,
kanban,
messages,
notifications,
optimal,
orchestrator,
project,
sessions,
stream,
tasks,
work_session,
)
__all__ = [
"agents",
"channels",
"dashboard",
"docs",
"git",
"health",
"journals",
"kanban",
"messages",
"notifications",
"optimal",
"orchestrator",
"project",
"sessions",
"stream",
"tasks",
"work_session",
]