diff options
Diffstat (limited to 'plugin/tls')
-rw-r--r-- | plugin/tls/tls.go | 3 | ||||
-rw-r--r-- | plugin/tls/tls_test.go | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/plugin/tls/tls.go b/plugin/tls/tls.go index bfde8cb2a..bb6504352 100644 --- a/plugin/tls/tls.go +++ b/plugin/tls/tls.go @@ -3,11 +3,10 @@ package tls import ( ctls "crypto/tls" + "github.com/coredns/caddy" "github.com/coredns/coredns/core/dnsserver" "github.com/coredns/coredns/plugin" "github.com/coredns/coredns/plugin/pkg/tls" - - "github.com/caddyserver/caddy" ) func init() { plugin.Register("tls", setup) } diff --git a/plugin/tls/tls_test.go b/plugin/tls/tls_test.go index f1ff8ab3e..5aef82f34 100644 --- a/plugin/tls/tls_test.go +++ b/plugin/tls/tls_test.go @@ -5,9 +5,8 @@ import ( "strings" "testing" + "github.com/coredns/caddy" "github.com/coredns/coredns/core/dnsserver" - - "github.com/caddyserver/caddy" ) func TestTLS(t *testing.T) { |