Categorygithub.com/cv21/jsonrpc2
repositorypackage
1.0.1
Repository: https://github.com/cv21/jsonrpc2.git
Documentation: pkg.go.dev

# README

jsonrpc2

It is simple jsonrpc2 client.

Usage:

	client := NewClient(serverRpcUrl)
	var val int
	err := client.Call(context.Background(), "Divide", struct {
		A,B int
	}{4,2}, &val)