mirror of
https://github.com/coredns/coredns.git
synced 2026-04-05 11:45:33 -04:00
9 lines
254 B
Go
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.", ""}
|
|
}
|