Merge remote-tracking branch 'origin/errcode' into errcode

# Conflicts:
#	internal/rpc/msg/delete.go
#	pkg/common/db/controller/msg.go
#	pkg/common/db/table/unrelation/extend_msg_set.go
This commit is contained in:
wangchuxiao
2023-02-23 19:17:23 +08:00
12 changed files with 652 additions and 217 deletions
+2 -2
View File
@@ -38,12 +38,12 @@ const (
)
type Client struct {
cache cache.Cache
cache cache.MsgCache
tokenExpireTime int64
taskIDTTL int64
}
func NewClient(cache cache.Cache) *Client {
func NewClient(cache cache.MsgCache) *Client {
return &Client{cache: cache, tokenExpireTime: tokenExpireTime, taskIDTTL: taskIDTTL}
}