mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 20:52:33 +02:00
10 lines
175 B
Go
10 lines
175 B
Go
package common
|
|
|
|
import "time"
|
|
|
|
const DockerHostFromEnv = "$DOCKER_HOST"
|
|
|
|
const (
|
|
HealthCheckIntervalDefault = 5 * time.Second
|
|
HealthCheckTimeoutDefault = 5 * time.Second
|
|
)
|