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>
13 lines
246 B
Go
13 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()
|
|
}
|