修改core仓库名称

This commit is contained in:
linwenxiang
2020-08-29 15:15:03 +08:00
parent 33b462217c
commit 8817f02038
15 changed files with 571 additions and 11 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
package cache
import (
"github.com/matchstalk/utils/cache"
"github.com/matchstalk/go-admin-core/cache"
)
var MemoryAdapter Adapter
+1 -1
View File
@@ -5,7 +5,7 @@ import (
"testing"
"time"
"github.com/matchstalk/utils/cache"
"github.com/matchstalk/go-admin-core/cache"
)
func TestInitMemory(t *testing.T) {
+1 -1
View File
@@ -4,8 +4,8 @@ import (
"time"
"github.com/go-redis/redis/v7"
"github.com/matchstalk/go-admin-core/cache"
"github.com/matchstalk/redisqueue"
"github.com/matchstalk/utils/cache"
)
var RedisAdapter Adapter
+1 -1
View File
@@ -5,7 +5,7 @@ import (
"testing"
"time"
"github.com/matchstalk/utils/cache"
"github.com/matchstalk/go-admin-core/cache"
)
func TestInitRedis(t *testing.T) {
+1 -1
View File
@@ -3,7 +3,7 @@ package cache
import (
"time"
"github.com/matchstalk/utils/cache"
"github.com/matchstalk/go-admin-core/cache"
)
type Adapter interface {