# frozen_string_literal: true

module <%= class_name %>

class Configuration
  # Define here the settings for this extension, e.g.:
  #
  # attr_accessor :my_setting
end

class << self
  def configuration
    @configuration ||= Configuration.new
  end

  alias config configuration

  def configure
    yield configuration
  end
end

end