diff options
author | 2018-04-22 08:34:35 +0100 | |
---|---|---|
committer | 2018-04-22 08:34:35 +0100 | |
commit | 0930eb8beb69684dfb1e1e066e2a7a6ed3827bf4 (patch) | |
tree | 80ead193f34227b1fc8f010f83a727edd89bf9f3 /plugin/etcd/setup.go | |
parent | 69a956f052a603eca3d400abf8a44a9b44f83184 (diff) | |
download | coredns-0930eb8beb69684dfb1e1e066e2a7a6ed3827bf4.tar.gz coredns-0930eb8beb69684dfb1e1e066e2a7a6ed3827bf4.tar.zst coredns-0930eb8beb69684dfb1e1e066e2a7a6ed3827bf4.zip |
all: fix plugin import ordering (#1717)
Got a bit messed up with stb lib "context" usage.
Diffstat (limited to 'plugin/etcd/setup.go')
-rw-r--r-- | plugin/etcd/setup.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugin/etcd/setup.go b/plugin/etcd/setup.go index 68365a03d..6b83ebc37 100644 --- a/plugin/etcd/setup.go +++ b/plugin/etcd/setup.go @@ -1,6 +1,7 @@ package etcd import ( + "context" "crypto/tls" "github.com/coredns/coredns/core/dnsserver" @@ -9,8 +10,6 @@ import ( "github.com/coredns/coredns/plugin/pkg/upstream" "github.com/coredns/coredns/plugin/proxy" - "context" - etcdc "github.com/coreos/etcd/client" "github.com/mholt/caddy" ) |