Signed-off-by: Miek Gieben <miek@miek.nl>
This commit is contained in:
Miek Gieben
2021-02-09 15:37:23 +01:00
parent a588c16ad9
commit 7dee43e393
2 changed files with 0 additions and 12 deletions

View File

@@ -19,7 +19,6 @@ var Directives = []string{
"root", "root",
"bind", "bind",
"debug", "debug",
"trace",
"ready", "ready",
"health", "health",
"pprof", "pprof",
@@ -39,11 +38,6 @@ var Directives = []string{
"template", "template",
"transfer", "transfer",
"hosts", "hosts",
"route53",
"azure",
"clouddns",
"federation",
"k8s_external",
"kubernetes", "kubernetes",
"file", "file",
"auto", "auto",

View File

@@ -9,13 +9,11 @@ import (
_ "github.com/coredns/coredns/plugin/any" _ "github.com/coredns/coredns/plugin/any"
_ "github.com/coredns/coredns/plugin/auto" _ "github.com/coredns/coredns/plugin/auto"
_ "github.com/coredns/coredns/plugin/autopath" _ "github.com/coredns/coredns/plugin/autopath"
_ "github.com/coredns/coredns/plugin/azure"
_ "github.com/coredns/coredns/plugin/bind" _ "github.com/coredns/coredns/plugin/bind"
_ "github.com/coredns/coredns/plugin/bufsize" _ "github.com/coredns/coredns/plugin/bufsize"
_ "github.com/coredns/coredns/plugin/cache" _ "github.com/coredns/coredns/plugin/cache"
_ "github.com/coredns/coredns/plugin/cancel" _ "github.com/coredns/coredns/plugin/cancel"
_ "github.com/coredns/coredns/plugin/chaos" _ "github.com/coredns/coredns/plugin/chaos"
_ "github.com/coredns/coredns/plugin/clouddns"
_ "github.com/coredns/coredns/plugin/debug" _ "github.com/coredns/coredns/plugin/debug"
_ "github.com/coredns/coredns/plugin/dnssec" _ "github.com/coredns/coredns/plugin/dnssec"
_ "github.com/coredns/coredns/plugin/dnstap" _ "github.com/coredns/coredns/plugin/dnstap"
@@ -27,7 +25,6 @@ import (
_ "github.com/coredns/coredns/plugin/grpc" _ "github.com/coredns/coredns/plugin/grpc"
_ "github.com/coredns/coredns/plugin/health" _ "github.com/coredns/coredns/plugin/health"
_ "github.com/coredns/coredns/plugin/hosts" _ "github.com/coredns/coredns/plugin/hosts"
_ "github.com/coredns/coredns/plugin/k8s_external"
_ "github.com/coredns/coredns/plugin/kubernetes" _ "github.com/coredns/coredns/plugin/kubernetes"
_ "github.com/coredns/coredns/plugin/loadbalance" _ "github.com/coredns/coredns/plugin/loadbalance"
_ "github.com/coredns/coredns/plugin/log" _ "github.com/coredns/coredns/plugin/log"
@@ -40,14 +37,11 @@ import (
_ "github.com/coredns/coredns/plugin/reload" _ "github.com/coredns/coredns/plugin/reload"
_ "github.com/coredns/coredns/plugin/rewrite" _ "github.com/coredns/coredns/plugin/rewrite"
_ "github.com/coredns/coredns/plugin/root" _ "github.com/coredns/coredns/plugin/root"
_ "github.com/coredns/coredns/plugin/route53"
_ "github.com/coredns/coredns/plugin/secondary" _ "github.com/coredns/coredns/plugin/secondary"
_ "github.com/coredns/coredns/plugin/sign" _ "github.com/coredns/coredns/plugin/sign"
_ "github.com/coredns/coredns/plugin/template" _ "github.com/coredns/coredns/plugin/template"
_ "github.com/coredns/coredns/plugin/tls" _ "github.com/coredns/coredns/plugin/tls"
_ "github.com/coredns/coredns/plugin/trace"
_ "github.com/coredns/coredns/plugin/traffic" _ "github.com/coredns/coredns/plugin/traffic"
_ "github.com/coredns/coredns/plugin/transfer" _ "github.com/coredns/coredns/plugin/transfer"
_ "github.com/coredns/coredns/plugin/whoami" _ "github.com/coredns/coredns/plugin/whoami"
_ "github.com/coredns/federation"
) )