mirror of
https://github.com/yusing/godoxy.git
synced 2026-03-17 23:03:49 +01:00
11 lines
175 B
Go
11 lines
175 B
Go
package common
|
|
|
|
import "time"
|
|
|
|
const DockerHostFromEnv = "$DOCKER_HOST"
|
|
|
|
const (
|
|
HealthCheckIntervalDefault = 5 * time.Second
|
|
HealthCheckTimeoutDefault = 5 * time.Second
|
|
)
|