lib/opentelemetry/trace/propagation.rb



# frozen_string_literal: true

# Copyright The OpenTelemetry Authors
#
# SPDX-License-Identifier: Apache-2.0

require 'opentelemetry/trace/propagation/trace_context'

module OpenTelemetry
  module Trace
    # The Trace::Propagation module contains injectors and extractors for
    # sending and receiving span context over the wire
    module Propagation
    end
  end
end