gatus/vendor/github.com/TwinProduction/health/status.go
2021-02-12 23:29:21 -05:00

9 lines
86 B
Go

package health
type Status string
var (
Down Status = "DOWN"
Up Status = "UP"
)