Sha256: 9bb9acb356ff739c226aecfe8d764d37a9af43da624f8d5b5856abb50919abbe
Contents?: true
Size: 446 Bytes
Versions: 43
Compression:
Stored size: 446 Bytes
Contents
require 'json' module Datadog 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
Version data entries
43 entries across 43 versions & 2 rubygems