gatus/config/endpoint/condition_result.go
2025-04-04 19:06:29 -07:00

11 lines
264 B
Go

package endpoint
// ConditionResult result of a Condition
type ConditionResult struct {
// Condition that was evaluated
Condition string `json:"condition"`
// Success whether the condition was met (successful) or not (failed)
Success bool `json:"success"`
}