2026-05-29 15:48:11 +00:00
|
|
|
package health
|
|
|
|
|
|
|
|
|
|
// Response is the JSON body returned by the health handler.
|
|
|
|
|
// Status is one of "UP", "DEGRADED", or "DOWN".
|
|
|
|
|
type Response struct {
|
|
|
|
|
Status string `json:"status"`
|
|
|
|
|
Components map[string]ComponentStatus `json:"components"`
|
|
|
|
|
}
|