diff options
Diffstat (limited to 'plugin/reverse')
-rw-r--r-- | plugin/reverse/reverse.go | 4 | ||||
-rw-r--r-- | plugin/reverse/reverse_test.go | 3 |
2 files changed, 2 insertions, 5 deletions
diff --git a/plugin/reverse/reverse.go b/plugin/reverse/reverse.go index ff30d9ee7..2d9dc94e6 100644 --- a/plugin/reverse/reverse.go +++ b/plugin/reverse/reverse.go @@ -1,15 +1,13 @@ package reverse import ( + "context" "net" "github.com/coredns/coredns/plugin" "github.com/coredns/coredns/plugin/pkg/dnsutil" "github.com/coredns/coredns/plugin/pkg/fall" "github.com/coredns/coredns/request" - - "context" - "github.com/miekg/dns" ) diff --git a/plugin/reverse/reverse_test.go b/plugin/reverse/reverse_test.go index 62985745e..6d07ace29 100644 --- a/plugin/reverse/reverse_test.go +++ b/plugin/reverse/reverse_test.go @@ -1,6 +1,7 @@ package reverse import ( + "context" "net" "regexp" "testing" @@ -9,8 +10,6 @@ import ( "github.com/coredns/coredns/plugin/pkg/dnstest" "github.com/coredns/coredns/plugin/test" - "context" - "github.com/miekg/dns" ) |