blob: 43934e80c85b21d5e9393b72b5d8a5156b9ac3d1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
// Package secondary implements a secondary plugin.
package secondary
import "github.com/coredns/coredns/plugin/file"
// Secondary implements a secondary plugin that allows CoreDNS to retrieve (via AXFR)
// zone information from a primary server.
type Secondary struct {
file.File
}
|