1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-api-healthcheck synced 2026-06-18 05:00:03 +02:00

Move source files to "src" folder.

This commit is contained in:
Henrik Hautakoski 2020-03-06 11:35:36 +01:00
parent 8e8393d560
commit 4ef714a750
6 changed files with 1 additions and 1 deletions

15
src/haproxy/types.go Normal file
View file

@ -0,0 +1,15 @@
package haproxy;
// All supported health check values for HAproxy.
// See https://cbonte.github.io/haproxy-dconv/1.7/configuration.html#5.2-agent-check
type HealthCheckStatus string
const (
HealthCheckUp = "up"
HealthCheckDown = "down"
HealthCheckMaint = "maint"
HealthCheckReady = "ready"
HealthCheckDrain = "drain"
HealthCheckFailed = "failed"
HealthCheckStopped = "Stopped"
)