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