9 lines
86 B
Go
9 lines
86 B
Go
package health
|
|
|
|
type Status string
|
|
|
|
var (
|
|
Down Status = "DOWN"
|
|
Up Status = "UP"
|
|
)
|