CustomConditionSignature is the function signature of a custom condition. It takes a map of parameters and returns a boolean
func(map[string]string) bool
| 41 | |
| 42 | // CustomConditionSignature is the function signature of a custom condition. It takes a map of parameters and returns a boolean |
| 43 | type CustomConditionSignature func(map[string]string) bool |
| 44 | |
| 45 | // NoCondition is a no-op condition check function that always returns true |
| 46 | func NoCondition(map[string]string) bool { |
nothing calls this directly
no outgoing calls
no test coverage detected