Handle implements jsonrpc2.Handler.
(ctx context.Context, conn *jsonrpc2.Conn, req *jsonrpc2.Request)
| 54 | |
| 55 | // Handle implements jsonrpc2.Handler. |
| 56 | func (h *Handler) Handle(ctx context.Context, conn *jsonrpc2.Conn, req *jsonrpc2.Request) { |
| 57 | jsonrpc2.HandlerWithError(h.handle).Handle(ctx, conn, req) |
| 58 | } |
| 59 | |
| 60 | // handle is a function to be used by jsonrpc2.Handler. |
| 61 | func (h *Handler) handle(ctx context.Context, conn *jsonrpc2.Conn, req *jsonrpc2.Request) ( |
no outgoing calls
no test coverage detected