landline/lib/hyde/probe/binding.rb

17 lines
344 B
Ruby

# frozen_string_literal: true
require_relative "../dsl/probe_methods"
require_relative "../dsl/common_methods"
module Hyde
# Binding that provides execution context for Probes.
class ProbeBinding
include Hyde::DSL::ProbeMethods
include Hyde::DSL::CommonMethods
def initialize(origin)
@origin = origin
end
end
end