diff --git a/abstract/IRedisClient.go b/abstract/IRedisClient.go index 4da5f19..5dce9ba 100644 --- a/abstract/IRedisClient.go +++ b/abstract/IRedisClient.go @@ -11,7 +11,7 @@ import ( "context" "git.zhangdeman.cn/zhangdeman/redis/define" - "github.com/redis/go-redis/v9" + "github.com/go-redis/redis/v8" "go.uber.org/zap" ) diff --git a/client.go b/client.go index fb7c5ed..6394fae 100644 --- a/client.go +++ b/client.go @@ -16,8 +16,8 @@ import ( "git.zhangdeman.cn/zhangdeman/redis/abstract" "git.zhangdeman.cn/zhangdeman/redis/define" wrapperOperate "git.zhangdeman.cn/zhangdeman/wrapper" + redisClient "github.com/go-redis/redis/v8" "github.com/pkg/errors" - redisClient "github.com/redis/go-redis/v9" "go.uber.org/zap" )