# File lib/smart_proxy_pulp_plugin/pulp_client.rb, line 7
    def self.get(path)
      uri = URI.parse(::PulpProxy::Plugin.settings.pulp_url.to_s)
      path = [uri.path, path].join('/') unless uri.path.empty?
      req = Net::HTTP::Get.new(URI.join(uri.to_s, path).path)
      req.add_field('Accept', 'application/json')
      req.content_type = 'application/json'
      response = self.http.request(req)
    end