diff options
Diffstat (limited to 'plugin/k8s_external')
-rw-r--r-- | plugin/k8s_external/setup.go | 3 | ||||
-rw-r--r-- | plugin/k8s_external/setup_test.go | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/plugin/k8s_external/setup.go b/plugin/k8s_external/setup.go index 651ed1ba8..8783507bd 100644 --- a/plugin/k8s_external/setup.go +++ b/plugin/k8s_external/setup.go @@ -3,11 +3,10 @@ package external import ( "strconv" + "github.com/coredns/caddy" "github.com/coredns/coredns/core/dnsserver" "github.com/coredns/coredns/plugin" "github.com/coredns/coredns/plugin/pkg/upstream" - - "github.com/caddyserver/caddy" ) func init() { plugin.Register("k8s_external", setup) } diff --git a/plugin/k8s_external/setup_test.go b/plugin/k8s_external/setup_test.go index 82ee243ee..fde5ca637 100644 --- a/plugin/k8s_external/setup_test.go +++ b/plugin/k8s_external/setup_test.go @@ -3,7 +3,7 @@ package external import ( "testing" - "github.com/caddyserver/caddy" + "github.com/coredns/caddy" ) func TestSetup(t *testing.T) { |