mirror of
https://github.com/TwiN/gatus.git
synced 2025-02-18 03:01:16 +01:00
9 lines
86 B
Go
9 lines
86 B
Go
package health
|
|
|
|
type Status string
|
|
|
|
var (
|
|
Down Status = "DOWN"
|
|
Up Status = "UP"
|
|
)
|