1 //go:build windows 2 3 package dns01 4 5 import "time" 6 7 // dnsTimeout is used to override the default DNS timeout of 20 seconds. 8 var dnsTimeout = 20 * time.Second 9