blob: 79b0ec8474beec635f1b8f215fdd4e8320e2206d (
plain) (
blame)
1
2
3
4
5
6
7
8
|
package erratic
import "github.com/coredns/coredns/request"
// AutoPath implements the AutoPathFunc call from the autopath middleware.
func (e *Erratic) AutoPath(state request.Request) []string {
return []string{"a.example.org.", "b.example.org.", ""}
}
|