diff options
Diffstat (limited to 'plugin/auto')
-rw-r--r-- | plugin/auto/setup.go | 3 | ||||
-rw-r--r-- | plugin/auto/setup_test.go | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/plugin/auto/setup.go b/plugin/auto/setup.go index e6495b192..7da3e11a2 100644 --- a/plugin/auto/setup.go +++ b/plugin/auto/setup.go @@ -6,14 +6,13 @@ import ( "regexp" "time" + "github.com/coredns/caddy" "github.com/coredns/coredns/core/dnsserver" "github.com/coredns/coredns/plugin" "github.com/coredns/coredns/plugin/metrics" clog "github.com/coredns/coredns/plugin/pkg/log" "github.com/coredns/coredns/plugin/pkg/parse" "github.com/coredns/coredns/plugin/pkg/upstream" - - "github.com/caddyserver/caddy" ) var log = clog.NewWithPlugin("auto") diff --git a/plugin/auto/setup_test.go b/plugin/auto/setup_test.go index 528dce23b..e50b8451e 100644 --- a/plugin/auto/setup_test.go +++ b/plugin/auto/setup_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "github.com/caddyserver/caddy" + "github.com/coredns/caddy" ) func TestAutoParse(t *testing.T) { |