Files
coredns/plugin/erratic/autopath.go
2026-03-29 17:02:20 -07:00

9 lines
254 B
Go

package erratic
import "github.com/coredns/coredns/request"
// AutoPath implements the AutoPathFunc call from the autopath plugin.
func (e *Erratic) AutoPath(_state request.Request) []string {
return []string{"a.example.org.", "b.example.org.", ""}
}