aboutsummaryrefslogtreecommitdiff
path: root/core/coredns.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/coredns.go')
-rw-r--r--core/coredns.go16
1 files changed, 7 insertions, 9 deletions
diff --git a/core/coredns.go b/core/coredns.go
index e770a1a30..0ceb5d064 100644
--- a/core/coredns.go
+++ b/core/coredns.go
@@ -6,21 +6,19 @@ import (
// plug in the standard directives
_ "github.com/miekg/coredns/middleware/bind"
- _ "github.com/miekg/coredns/middleware/health"
- _ "github.com/miekg/coredns/middleware/pprof"
-
- _ "github.com/miekg/coredns/middleware/errors"
- _ "github.com/miekg/coredns/middleware/loadbalance"
- _ "github.com/miekg/coredns/middleware/log"
- _ "github.com/miekg/coredns/middleware/metrics"
- _ "github.com/miekg/coredns/middleware/rewrite"
-
_ "github.com/miekg/coredns/middleware/cache"
_ "github.com/miekg/coredns/middleware/chaos"
_ "github.com/miekg/coredns/middleware/dnssec"
+ _ "github.com/miekg/coredns/middleware/errors"
_ "github.com/miekg/coredns/middleware/etcd"
_ "github.com/miekg/coredns/middleware/file"
+ _ "github.com/miekg/coredns/middleware/health"
_ "github.com/miekg/coredns/middleware/kubernetes"
+ _ "github.com/miekg/coredns/middleware/loadbalance"
+ _ "github.com/miekg/coredns/middleware/log"
+ _ "github.com/miekg/coredns/middleware/metrics"
+ _ "github.com/miekg/coredns/middleware/pprof"
_ "github.com/miekg/coredns/middleware/proxy"
+ _ "github.com/miekg/coredns/middleware/rewrite"
_ "github.com/miekg/coredns/middleware/secondary"
)