class Dry::Logic::Rule::Disjunction

def call(input)

def call(input)
  result = left.(input)
  if result.success?
    result
  else
    right.(input)
  end
end