aboutsummaryrefslogtreecommitdiff
path: root/core/coredns.go
blob: 0ef1789b15c401c18e4488a54b1febef62115204 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Package core registers the server and all plugins we support.
package core

import (
	// plug in the server
	_ "github.com/miekg/coredns/core/dnsserver"

	// plug in the standard directives (sorted)
	_ "github.com/miekg/coredns/middleware/auto"
	_ "github.com/miekg/coredns/middleware/bind"
	_ "github.com/miekg/coredns/middleware/cache"
	_ "github.com/miekg/coredns/middleware/chaos"
	_ "github.com/miekg/coredns/middleware/dnssec"
	_ "github.com/miekg/coredns/middleware/erratic"
	_ "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/httpproxy"
	_ "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/root"
	_ "github.com/miekg/coredns/middleware/secondary"
	_ "github.com/miekg/coredns/middleware/whoami"
)