Replace - by _ in file names

This commit is contained in:
TwinProduction
2021-07-02 20:04:05 -04:00
parent 5bf560221f
commit b904afb8b5
5 changed files with 0 additions and 0 deletions

11
core/health_status.go Normal file
View File

@ -0,0 +1,11 @@
package core
// HealthStatus is the status of Gatus
type HealthStatus struct {
// Status is the state of Gatus (UP/DOWN)
Status string `json:"status"`
// Message is an accompanying description of why the status is as reported.
// If the Status is UP, no message will be provided
Message string `json:"message,omitempty"`
}