Codebase list golang-github-go-kit-kit / f14434d
fix etcd import path (#756) He Liu authored 5 years ago Peter Bourgon committed 5 years ago
5 changed file(s) with 6 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
99 "net/http"
1010 "time"
1111
12 etcd "github.com/coreos/etcd/client"
12 etcd "go.etcd.io/etcd/client"
1313 )
1414
1515 var (
77
88 "golang.org/x/net/context"
99
10 etcd "github.com/coreos/etcd/client"
10 etcd "go.etcd.io/etcd/client"
1111 )
1212
1313 func TestNewClient(t *testing.T) {
33 "errors"
44 "testing"
55
6 stdetcd "github.com/coreos/etcd/client"
6 stdetcd "go.etcd.io/etcd/client"
77
88 "github.com/go-kit/kit/log"
99 "github.com/go-kit/kit/sd"
33 "sync"
44 "time"
55
6 etcd "github.com/coreos/etcd/client"
6 etcd "go.etcd.io/etcd/client"
77
88 "github.com/go-kit/kit/log"
99 )
55 "errors"
66 "time"
77
8 "github.com/coreos/etcd/clientv3"
9 "github.com/coreos/etcd/pkg/transport"
8 "go.etcd.io/etcd/clientv3"
9 "go.etcd.io/etcd/pkg/transport"
1010 )
1111
1212 var (