blob: 5b3fa2b8f242a7456f655d727b2a29765aafac25 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package main
//go:generate go run directives_generate.go
import (
"github.com/coredns/coredns/coremain"
// Plug in CoreDNS
_ "github.com/coredns/coredns/core/plugin"
)
func main() {
coremain.Run()
}
|