doc.go

 1// Copyright The OpenTelemetry Authors
 2// SPDX-License-Identifier: Apache-2.0
 3
 4/*
 5Package propagation contains OpenTelemetry context propagators.
 6
 7OpenTelemetry propagators are used to extract and inject context data from and
 8into messages exchanged by applications. The propagator supported by this
 9package 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*/
13package propagation // import "go.opentelemetry.io/otel/propagation"