7 lines
160 B
Go
7 lines
160 B
Go
// Package core registers the server and all plugins we support.
|
|
package core
|
|
|
|
import (
|
|
// plug in the server
|
|
_ "github.com/coredns/coredns/core/dnsserver"
|
|
)
|