1
0
Fork 0
golang-github-twin-health/status.go
Daniel Baumann 9412e3a223
Adding upstream version 1.6.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-17 05:40:10 +02:00

8 lines
168 B
Go

package health
type Status string
var (
Down Status = "DOWN" // For when the application is unhealthy
Up Status = "UP" // For when the application is healthy
)