Files
web/health/component_status.go
T

9 lines
247 B
Go
Raw Permalink Normal View History

package health
// ComponentStatus is the health state of a single component in the JSON response.
type ComponentStatus struct {
Status string `json:"status"`
Latency string `json:"latency,omitempty"`
Error string `json:"error,omitempty"`
}