From 20b30f92a7ec55c5ab876609d06cece9dde1a8c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E8=8C=B6=E6=B8=85=E6=AC=A2?= Date: Wed, 19 Jun 2024 21:57:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=87=E6=8D=A2v8=E5=BA=93,=20=E9=80=82?= =?UTF-8?q?=E9=85=8D=E6=B5=81=E6=8E=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- abstract/IRedisClient.go | 2 +- client.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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" )