package domain import "time" // RegistryStatus represents the health status of a container registry. type RegistryStatus struct { Healthy bool `json:"healthy"` URL string `json:"url"` Latency string `json:"latency,omitempty"` Error string `json:"error,omitempty"` LastChecked time.Time `json:"last_checked"` }