8 lines
168 B
Go
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
|
|
)
|