go_dreamfactory/sys/cache/user.go
2022-06-01 15:53:16 +08:00

17 lines
243 B
Go

package cache
import (
"go_dreamfactory/pb"
"github.com/liwei1dao/lego/core"
)
const ( //Redis
Redis_UserCache core.Redis_Key = "user:%d" //会话列表
)
func (this *Cache) UpdateUser(data *pb.Cache_UserData) (err error) {
return
}