mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
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.
46 lines
591 B
Python
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",
|
|
]
|