f416950556
Move fresh and retry runner dispatch into AgentRun command admission, remove process-local job creation and secret persistence, and split oversized modules by responsibility. Co-Authored-By: Codex <noreply@openai.com>
13 lines
374 B
TypeScript
13 lines
374 B
TypeScript
/*
|
|
* Workbench HTTP compatibility facade.
|
|
* Read routes, realtime transport, and fact projections are split by responsibility.
|
|
*/
|
|
export {
|
|
classifyWorkbenchReadModelFailure,
|
|
handleWorkbenchReadModelHttp
|
|
} from "./server-workbench-read-http.ts";
|
|
export {
|
|
drainWorkbenchRealtimeConnections,
|
|
handleWorkbenchRealtimeHttp
|
|
} from "./server-workbench-realtime-http.ts";
|