(method string, params any)
| 64 | } |
| 65 | |
| 66 | func newNotification(method string, params any) jsonrpc2.Message { |
| 67 | msg, err := jsonrpc2.NewNotification(method, params) |
| 68 | if err != nil { |
| 69 | panic(err) |
| 70 | } |
| 71 | return msg |
| 72 | } |
| 73 | |
| 74 | func newID(id any) jsonrpc2.ID { |
| 75 | switch v := id.(type) { |
no test coverage detected
searching dependent graphs…