class Dry::Logic::Rule::Conjunction

def call(input)

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

def type

def type
  :and
end