Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
936 B
Go
29 lines
936 B
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package baggage // import "go.opentelemetry.io/otel/baggage"
|
|
|
|
import (
|
|
"context"
|
|
|
|
"go.opentelemetry.io/otel/internal/baggage"
|
|
)
|
|
|
|
// ContextWithBaggage returns a copy of parent with baggage.
|
|
func ContextWithBaggage(parent context.Context, b Baggage) context.Context {
|
|
// Delegate so any hooks for the OpenTracing bridge are handled.
|
|
return baggage.ContextWithList(parent, b.list)
|
|
}
|
|
|
|
// ContextWithoutBaggage returns a copy of parent with no baggage.
|
|
func ContextWithoutBaggage(parent context.Context) context.Context {
|
|
// Delegate so any hooks for the OpenTracing bridge are handled.
|
|
return baggage.ContextWithList(parent, nil)
|
|
}
|
|
|
|
// FromContext returns the baggage contained in ctx.
|
|
func FromContext(ctx context.Context) Baggage {
|
|
// Delegate so any hooks for the OpenTracing bridge are handled.
|
|
return Baggage{list: baggage.ListFromContext(ctx)}
|
|
}
|