EvoBal/app/services/email_action/base.rb

17 lines
180 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
2021-01-25 14:32:26 +01:00
2021-01-20 13:46:11 +01:00
end
end