mirror of
https://github.com/coredns/coredns.git
synced 2025-10-28 08:44:17 -04:00
11 lines
157 B
Go
11 lines
157 B
Go
|
|
package bind
|
||
|
|
|
||
|
|
import "github.com/mholt/caddy"
|
||
|
|
|
||
|
|
func init() {
|
||
|
|
caddy.RegisterPlugin("bind", caddy.Plugin{
|
||
|
|
ServerType: "dns",
|
||
|
|
Action: setupBind,
|
||
|
|
})
|
||
|
|
}
|