MCPcopy Index your code
hub / github.com/ChrisFeldmeier/OpenCodeRust / JsonRpcRequest

Interface JsonRpcRequest

crates/opencode-plugin/host/plugin-host.ts:15–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13// ---------------------------------------------------------------------------
14
15interface JsonRpcRequest {
16 jsonrpc: "2.0";
17 id: number;
18 method: string;
19 params?: Record<string, unknown>;
20}
21
22interface JsonRpcResponse {
23 jsonrpc: "2.0";

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected