# README
JSON-RPC 2.0 Codec
Usage
Import the codec and set within the client/server
package main
import (
"github.com/micro/go-micro"
"github.com/micro/go-micro/client"
"github.com/micro/go-micro/server"
"github.com/micro/go-plugins/codec/jsonrpc2"
)
func main() {
client := client.NewClient(
client.Codec("application/json", jsonrpc2.NewCodec),
client.ContentType("application/json"),
)
server := server.NewServer(
server.Codec("application/json", jsonrpc2.NewCodec),
)
service := micro.NewService(
micro.Client(client),
micro.Server(server),
)
// ...
}
# Functions
No description provided by the author
NewError returns an Error with given code and message.
ServerError convert errors returned by Client.Call() into Error.