You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
378 B
Go
20 lines
378 B
Go
4 years ago
|
package internal
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
const (
|
||
|
autoSyncInterval = time.Minute
|
||
|
coolDownInterval = time.Second
|
||
|
dialTimeout = 5 * time.Second
|
||
|
dialKeepAliveTime = 5 * time.Second
|
||
|
requestTimeout = 3 * time.Second
|
||
|
Delimiter = '/'
|
||
|
endpointsSeparator = ","
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
DialTimeout = dialTimeout
|
||
|
RequestTimeout = requestTimeout
|
||
|
NewClient = DialClient
|
||
|
)
|