coredns/coredns.go
Miek Gieben 47f4e165a0 Fix main startup ()
Set version and name of the program. And then call coremain.Run().

The coremain split makes CoreDNS embeddable.

Also see  for an old PR.
2016-08-23 16:36:29 +01:00

7 lines
90 B
Go

package main
import "github.com/miekg/coredns/coremain"
func main() {
coremain.Run()
}