1 Star 0 Fork 0

yonglinux / rpcx-sun-examples

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
codec.go 289 Bytes
一键复制 编辑 原始数据 按行查看 历史
root 提交于 2022-02-17 17:49 . update
package codec
import (
"github.com/json-iterator/go"
)
type JsoniterCodec struct {
}
func (c *JsoniterCodec) Decode(data []byte, i interface{}) error {
return jsoniter.Unmarshal(data, i)
}
func (c *JsoniterCodec) Encode(i interface{}) ([]byte, error) {
return jsoniter.Marshal(i)
}
1
https://gitee.com/yonglinux/rpcx-sun-examples.git
git@gitee.com:yonglinux/rpcx-sun-examples.git
yonglinux
rpcx-sun-examples
rpcx-sun-examples
v1.1.8

搜索帮助