Current section
Files
Jump to
Current section
Files
lib/reactive_commons/utils/span_utils.ex
defmodule ReactiveCommons.Utils.SpanUtils do
@moduledoc false
def inject(headers, from) do
if Code.ensure_loaded?(OpentelemetryReactiveCommons.Utils) do
OpentelemetryReactiveCommons.Utils.inject(headers, from)
else
headers
end
end
end