1 Star 0 Fork 0

李文建/protoactor-go

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
encoder.go 455 Bytes
一键复制 编辑 原始数据 按行查看 历史
package log
import (
"reflect"
"time"
)
type Encoder interface {
EncodeBool(key string, val bool)
EncodeFloat64(key string, val float64)
EncodeInt(key string, val int)
EncodeInt64(key string, val int64)
EncodeDuration(key string, val time.Duration)
EncodeUint(key string, val uint)
EncodeUint64(key string, val uint64)
EncodeString(key string, val string)
EncodeObject(key string, val interface{})
EncodeType(key string, val reflect.Type)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/lwj8507/protoactor-go.git
git@gitee.com:lwj8507/protoactor-go.git
lwj8507
protoactor-go
protoactor-go
v0.0.1

搜索帮助