Files
2026-01-05 14:41:25 +08:00

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"`
}