Sha256: 7bd39d09a69a8814bde53322d1cc758dda3788c0e0f0290ebb70e952a200c080

Contents?: true

Size: 539 Bytes

Versions: 27

Compression:

Stored size: 539 Bytes

Contents

# frozen_string_literal: true

require 'json'

module Datadog
  module Core
    module Transport
      module HTTP
        module API
          # Endpoint
          class Endpoint
            attr_reader \
              :verb,
              :path

            def initialize(verb, path)
              @verb = verb
              @path = path
            end

            def call(env)
              env.verb = verb
              env.path = path
              yield(env)
            end
          end
        end
      end
    end
  end
end

Version data entries

27 entries across 27 versions & 2 rubygems

Version Path
ddtrace-1.19.0 lib/datadog/core/transport/http/api/endpoint.rb
ddtrace-1.18.0 lib/datadog/core/transport/http/api/endpoint.rb
ddtrace-1.17.0 lib/datadog/core/transport/http/api/endpoint.rb
ddtrace-1.16.2 lib/datadog/core/transport/http/api/endpoint.rb
ddtrace-1.16.1 lib/datadog/core/transport/http/api/endpoint.rb
ddtrace-1.16.0 lib/datadog/core/transport/http/api/endpoint.rb
ddtrace-1.15.0 lib/datadog/core/transport/http/api/endpoint.rb