mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-27 08:14:18 -04:00 
			
		
		
		
	Add a test for this as well as it's annoying to point out in every code review. Fix all the import paths that are flagged by this new test. Fixes: #3634 Signed-off-by: Miek Gieben <miek@miek.nl>
		
			
				
	
	
		
			14 lines
		
	
	
		
			246 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			246 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package main
 | |
| 
 | |
| //go:generate go run directives_generate.go
 | |
| //go:generate go run owners_generate.go
 | |
| 
 | |
| import (
 | |
| 	_ "github.com/coredns/coredns/core/plugin" // Plug in CoreDNS.
 | |
| 	"github.com/coredns/coredns/coremain"
 | |
| )
 | |
| 
 | |
| func main() {
 | |
| 	coremain.Run()
 | |
| }
 |