diff options
Diffstat (limited to 'plugin/debug')
-rw-r--r-- | plugin/debug/debug.go | 3 | ||||
-rw-r--r-- | plugin/debug/debug_test.go | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/plugin/debug/debug.go b/plugin/debug/debug.go index 91cc6fcf0..7fb6861fe 100644 --- a/plugin/debug/debug.go +++ b/plugin/debug/debug.go @@ -1,10 +1,9 @@ package debug import ( + "github.com/coredns/caddy" "github.com/coredns/coredns/core/dnsserver" "github.com/coredns/coredns/plugin" - - "github.com/caddyserver/caddy" ) func init() { plugin.Register("debug", setup) } diff --git a/plugin/debug/debug_test.go b/plugin/debug/debug_test.go index 8e1dcd9cd..71ebf37c1 100644 --- a/plugin/debug/debug_test.go +++ b/plugin/debug/debug_test.go @@ -3,9 +3,8 @@ package debug import ( "testing" + "github.com/coredns/caddy" "github.com/coredns/coredns/core/dnsserver" - - "github.com/caddyserver/caddy" ) func TestDebug(t *testing.T) { |