Move store to data/store

This commit is contained in:
Asim Aslam 2019-06-19 22:04:13 +01:00
parent a8042adac1
commit 3f910038a3
7 changed files with 6 additions and 6 deletions

View File

@ -7,7 +7,7 @@ import (
"github.com/hashicorp/consul/api"
"github.com/micro/go-micro/config/options"
"github.com/micro/go-micro/store"
"github.com/micro/go-micro/data/store"
)
type ckv struct {

View File

@ -6,7 +6,7 @@ import (
"time"
"github.com/micro/go-micro/config/options"
"github.com/micro/go-micro/store"
"github.com/micro/go-micro/data/store"
)
type memoryStore struct {

View File

@ -6,8 +6,8 @@ import (
"encoding/json"
"fmt"
"github.com/micro/go-micro/store"
ckv "github.com/micro/go-micro/store/consul"
"github.com/micro/go-micro/data/store"
ckv "github.com/micro/go-micro/data/store/consul"
lock "github.com/micro/go-micro/sync/lock/consul"
)

View File

@ -1,7 +1,7 @@
package sync
import (
"github.com/micro/go-micro/store"
"github.com/micro/go-micro/data/store"
"github.com/micro/go-micro/sync/leader"
"github.com/micro/go-micro/sync/lock"
"github.com/micro/go-micro/sync/time"

View File

@ -2,7 +2,7 @@
package sync
import (
"github.com/micro/go-micro/store"
"github.com/micro/go-micro/data/store"
"github.com/micro/go-micro/sync/leader"
"github.com/micro/go-micro/sync/lock"
"github.com/micro/go-micro/sync/task"