rename imports to asim/go-micro (#2051)

This commit is contained in:
Asim Aslam
2020-10-20 10:15:39 +01:00
committed by GitHub
parent 1ee348109e
commit b508565a78
265 changed files with 673 additions and 673 deletions

View File

@@ -1,8 +1,8 @@
package cache
import (
"github.com/micro/go-micro/v3/store"
"github.com/micro/go-micro/v3/store/memory"
"github.com/asim/go-micro/v3/store"
"github.com/asim/go-micro/v3/store/memory"
)
// cache store is a store with caching to reduce IO where applicable.

View File

@@ -3,8 +3,8 @@ package cache
import (
"testing"
"github.com/micro/go-micro/v3/store"
"github.com/micro/go-micro/v3/store/memory"
"github.com/asim/go-micro/v3/store"
"github.com/asim/go-micro/v3/store/memory"
"github.com/stretchr/testify/assert"
)

View File

@@ -8,7 +8,7 @@ import (
"sync"
"time"
"github.com/micro/go-micro/v3/store"
"github.com/asim/go-micro/v3/store"
"github.com/patrickmn/go-cache"
"github.com/pkg/errors"
)

View File

@@ -9,11 +9,11 @@ import (
"testing"
"time"
"github.com/asim/go-micro/v3/store"
"github.com/asim/go-micro/v3/store/cache"
"github.com/asim/go-micro/v3/store/memory"
"github.com/davecgh/go-spew/spew"
"github.com/kr/pretty"
"github.com/micro/go-micro/v3/store"
"github.com/micro/go-micro/v3/store/cache"
"github.com/micro/go-micro/v3/store/memory"
)
func memoryCleanup(db string, s store.Store) {