MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / CallMsg

Interface CallMsg

__tests__/query-pool.test.ts:18–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16const sleep = (ms: number) => new Promise((r) => setTimeout(r, ms));
17
18interface CallMsg { type: 'call'; id: number; toolName: string; args: Record<string, unknown> }
19type Action = { result: ToolResult } | { crash: true } | { hang: true } | { wait: Promise<ToolResult> };
20
21/**

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected