8 lines
202 B
Go
8 lines
202 B
Go
package models
|
|
|
|
// HealthResponse represents the health check response
|
|
type HealthResponse struct {
|
|
Status string `json:"status"`
|
|
Services map[string]string `json:"services,omitempty"`
|
|
}
|