加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
encoder_json.go 648 Bytes
一键复制 编辑 原始数据 按行查看 历史
Admin 提交于 2022-07-12 17:14 . fix: update mod
//go:build !binary_log
// Copyright (c) 2022 hxx258456
// github.com/hxx258456/mylog is licensed under Mulan PSL v2.
package mylog
// encoder_json.go file contains bindings to generate
// JSON encoded byte stream.
import (
"github.com/hxx258456/mylog/internal/pkg/json"
)
var (
_ encoder = (*json.Encoder)(nil)
enc = json.Encoder{}
)
func init() {
// using closure to reflect the changes at runtime.
json.JSONMarshalFunc = func(v interface{}) ([]byte, error) {
return InterfaceMarshalFunc(v)
}
}
func appendJSON(dst []byte, j []byte) []byte {
return append(dst, j...)
}
func decodeIfBinaryToBytes(in []byte) []byte {
return in
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化