# (c) Copyright 2018 Ribose Inc.
#

module EnMail
  module Adapters
    class Base
      attr_reader :options

      def initialize(options)
        @options = options
      end
    end
  end
end