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

@@ -21,7 +21,7 @@ import (
"time"
"go.etcd.io/etcd/api/v3/version"
"go.etcd.io/etcd/v3/etcdctl/ctlv2/command"
"go.etcd.io/etcd/etcdctl/v3/ctlv2/command"
"github.com/urfave/cli"
)