module Datadog::Tracing::Contrib::SuckerPunch::Patcher

def get_option(option)

def get_option(option)
  Datadog.configuration.tracing[:sucker_punch].get_option(option)
end

def patch

def patch
  require_relative 'exception_handler'
  require_relative 'instrumentation'
  ExceptionHandler.patch!
  Instrumentation.patch!
end

def target_version

def target_version
  Integration.version
end