mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-31 02:03:20 -04:00 
			
		
		
		
	* Doc: add package docs Add short package level docs to make godoc looks nicer. Add some badges to the README. * correct url
		
			
				
	
	
		
			27 lines
		
	
	
		
			1012 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			1012 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // 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
 | |
| 	_ "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/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"
 | |
| 	_ "github.com/miekg/coredns/middleware/whoami"
 | |
| )
 |