EvoBal/app/services/email_action/base.rb

16 lines
179 B
Ruby
Raw Normal View History

2021-01-20 13:46:11 +01:00
# frozen_string_literal: true
module EmailAction
class Error < ::StandardError
end
class Base
def process(email)
fail NotImplementedError
end
end
end