Skip to content

cv21/jsonrpc2

Repository files navigation

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)