|
package kos
|
|
|
|
const (
|
|
EnvAppName = "VOX_NAME"
|
|
EnvAppVersion = "VOX_VERSION"
|
|
EnvAppPort = "VOX_PORT"
|
|
EnvAppAddress = "VOX_ADDRESS"
|
|
)
|
|
|
|
const (
|
|
StateHealthy = "Healthy"
|
|
StateNoAccepting = "NoAccepting"
|
|
StateNoProgress = "NoProgress"
|
|
StateUnavailable = "Unavailable"
|
|
)
|