diff options
author | 2018-02-14 15:11:26 -0500 | |
---|---|---|
committer | 2018-02-14 21:11:26 +0100 | |
commit | 71ee323651ffed5d09aa22ea8d17eefbac2f6d08 (patch) | |
tree | c9fb894a5de2dc34dd14b66057856244d8b28203 /plugin/backend.go | |
parent | ee8084a08f8cfcd4357ae2ad0b6dff51ca322d3a (diff) | |
download | coredns-71ee323651ffed5d09aa22ea8d17eefbac2f6d08.tar.gz coredns-71ee323651ffed5d09aa22ea8d17eefbac2f6d08.tar.zst coredns-71ee323651ffed5d09aa22ea8d17eefbac2f6d08.zip |
plugin/kubernetes: Add upstream @self and loop count (#1484)
* add upstream @self and loop count
* 1st round of feedback
* allow argless upstream
* update test
* readmes
* feedback
Diffstat (limited to 'plugin/backend.go')
-rw-r--r-- | plugin/backend.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugin/backend.go b/plugin/backend.go index 9abb277f7..289b08856 100644 --- a/plugin/backend.go +++ b/plugin/backend.go @@ -3,9 +3,10 @@ package plugin import ( "github.com/coredns/coredns/plugin/etcd/msg" "github.com/coredns/coredns/request" - "golang.org/x/net/context" "github.com/miekg/dns" + + "golang.org/x/net/context" ) // ServiceBackend defines a (dynamic) backend that returns a slice of service definitions. |