EvoBal/app/services/email_action/base.rb

17 lines
180 B
Ruby

# frozen_string_literal: true
module EmailAction
class Error < ::StandardError
end
class Base
def process(email)
fail NotImplementedError
end
end
end