mirror of
https://github.com/go-acme/lego.git
synced 2025-01-09 01:18:01 +02:00
9 lines
158 B
Go
9 lines
158 B
Go
|
//go:build !windows
|
||
|
|
||
|
package dns01
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
// dnsTimeout is used to override the default DNS timeout of 10 seconds.
|
||
|
var dnsTimeout = 10 * time.Second
|