1 // Copyright The OpenTelemetry Authors
2 // SPDX-License-Identifier: Apache-2.0
3 4 /*
5 Package propagation contains OpenTelemetry context propagators.
6 7 OpenTelemetry propagators are used to extract and inject context data from and
8 into messages exchanged by applications. The propagator supported by this
9 package is the W3C Trace Context encoding
10 (https://www.w3.org/TR/trace-context/), and W3C Baggage
11 (https://www.w3.org/TR/baggage/).
12 */
13 package propagation // import "go.opentelemetry.io/otel/propagation"
14