lib/multiwoven/integrations/config.rb in multiwoven-integrations-0.1.64 vs lib/multiwoven/integrations/config.rb in multiwoven-integrations-0.1.72
- old
+ new
@@ -1,13 +1,14 @@
# frozen_string_literal: true
module Multiwoven
module Integrations
class Config
- attr_accessor :logger
+ attr_accessor :logger, :exception_reporter
def initialize(params = {})
@logger = params[:logger]
+ @exception_reporter = params[:exception_reporter]
end
end
end
end