| 38 | } |
| 39 | |
| 40 | type JSONRPCNotification struct { |
| 41 | JSONRPC string `json:"jsonrpc"` |
| 42 | Method string `json:"method"` |
| 43 | Params map[string]any `json:"params,omitempty"` |
| 44 | } |
| 45 | |
| 46 | func SerializeMessage(msg any) string { |
| 47 | pairs := []jsonPair{{Key: "jsonrpc", Value: "2.0"}} |
nothing calls this directly
no outgoing calls
no test coverage detected