mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 22:17:39 +03:00
11 lines
176 B
Go
11 lines
176 B
Go
//+build debugflags
|
|
|
|
package dns
|
|
|
|
import (
|
|
"flag"
|
|
)
|
|
|
|
func init() {
|
|
flag.StringVar(&overrideServ, "debug.dnsoverride", "system-default", "replace the DNS resolver address")
|
|
}
|