plugin/etcd: fully move to go.etcd.io (#3215)

This is needed as well to make it compile cleanly. Follow up to #3214.

Manually removed github.com/coreos/etcd/ from go.mod

Signed-off-by: Miek Gieben <miek@miek.nl>
This commit is contained in:
Miek Gieben
2019-08-27 16:58:35 +01:00
committed by GitHub
parent 06b61a17c8
commit efcc3758dd
4 changed files with 5 additions and 6 deletions

View File

@@ -11,8 +11,8 @@ import (
"github.com/coredns/coredns/plugin/etcd"
"github.com/coredns/coredns/plugin/etcd/msg"
etcdcv3 "github.com/coreos/etcd/clientv3"
"github.com/miekg/dns"
etcdcv3 "go.etcd.io/etcd/clientv3"
)
func etcdPlugin() *etcd.Etcd {