lib/http/feature.rb



# frozen_string_literal: true
module HTTP
  class Feature
    def initialize(opts = {})
      @opts = opts
    end
  end
end