Switch default codec and add default codec for server

This commit is contained in:
Asim Aslam
2019-01-07 13:48:38 +00:00
parent 5aeb28dfee
commit d179c971af
5 changed files with 18 additions and 9 deletions

View File

@@ -7,6 +7,7 @@ import (
"strconv"
"github.com/micro/go-micro/codec"
raw "github.com/micro/go-micro/codec/bytes"
"github.com/micro/go-micro/codec/json"
"github.com/micro/go-micro/codec/jsonrpc"
"github.com/micro/go-micro/codec/proto"
@@ -66,14 +67,14 @@ type response struct {
}
var (
defaultContentType = "application/octet-stream"
DefaultContentType = "application/protobuf"
defaultCodecs = map[string]codec.NewCodec{
DefaultCodecs = map[string]codec.NewCodec{
"application/protobuf": proto.NewCodec,
"application/json": json.NewCodec,
"application/json-rpc": jsonrpc.NewCodec,
"application/proto-rpc": protorpc.NewCodec,
"application/octet-stream": protorpc.NewCodec,
"application/octet-stream": raw.NewCodec,
}
)