29 lines
566 B
Go
29 lines
566 B
Go
package model
|
|
|
|
// Health Model
|
|
//
|
|
// Health represents how healthy the application is.
|
|
//
|
|
// swagger:model Health
|
|
type Health struct {
|
|
// The health of the overall application.
|
|
//
|
|
// required: true
|
|
// example: green
|
|
Health string `json:"health"`
|
|
// The health of the database connection.
|
|
//
|
|
// required: true
|
|
// example: green
|
|
Database string `json:"database"`
|
|
}
|
|
|
|
const (
|
|
// StatusGreen everything is alright.
|
|
StatusGreen = "green"
|
|
// StatusOrange some things are alright.
|
|
StatusOrange = "orange"
|
|
// StatusRed nothing is alright.
|
|
StatusRed = "red"
|
|
)
|