mirror of
https://github.com/foxcpp/maddy.git
synced 2026-02-11 10:13:27 +02:00
12 lines
176 B
Go
12 lines
176 B
Go
//+build debugflags
|
|
|
|
package dns
|
|
|
|
import (
|
|
"flag"
|
|
)
|
|
|
|
func init() {
|
|
flag.StringVar(&overrideServ, "debug.dnsoverride", "system-default", "replace the DNS resolver address")
|
|
}
|