etcdctl: Rename of imports after making etcdctl a module.

```
find -name '*.go' | xargs sed -i --follow-symlinks 's|etcd/v3/etcdctl|etcd/etcdctl/v3|g'
```
This commit is contained in:
Piotr Tabor
2020-10-20 11:04:59 +02:00
parent df48e499ea
commit 09679d29ad
13 changed files with 15 additions and 15 deletions

View File

@@ -25,9 +25,9 @@ import (
"testing"
"time"
"go.etcd.io/etcd/etcdctl/v3/snapshot"
"go.etcd.io/etcd/pkg/v3/expect"
"go.etcd.io/etcd/pkg/v3/testutil"
"go.etcd.io/etcd/v3/etcdctl/snapshot"
)
func TestCtlV3Snapshot(t *testing.T) { testCtl(t, snapshotTest) }

View File

@@ -24,9 +24,9 @@ import (
pb "go.etcd.io/etcd/api/v3/etcdserverpb"
"go.etcd.io/etcd/client/v3"
"go.etcd.io/etcd/etcdctl/v3/snapshot"
"go.etcd.io/etcd/pkg/v3/logutil"
"go.etcd.io/etcd/pkg/v3/transport"
"go.etcd.io/etcd/v3/etcdctl/snapshot"
"github.com/dustin/go-humanize"
"go.uber.org/zap"

View File

@@ -26,9 +26,9 @@ import (
"time"
"go.etcd.io/etcd/client/v3"
"go.etcd.io/etcd/etcdctl/v3/snapshot"
"go.etcd.io/etcd/pkg/v3/testutil"
"go.etcd.io/etcd/v3/embed"
"go.etcd.io/etcd/v3/etcdctl/snapshot"
"go.uber.org/zap"
)