mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-25 08:31:03 +00:00
Update to v25.0, and remove uses of deprecated types. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
16 lines
476 B
Go
16 lines
476 B
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package trace // import "go.opentelemetry.io/otel/trace"
|
|
|
|
// nonRecordingSpan is a minimal implementation of a Span that wraps a
|
|
// SpanContext. It performs no operations other than to return the wrapped
|
|
// SpanContext.
|
|
type nonRecordingSpan struct {
|
|
noopSpan
|
|
|
|
sc SpanContext
|
|
}
|
|
|
|
// SpanContext returns the wrapped SpanContext.
|
|
func (s nonRecordingSpan) SpanContext() SpanContext { return s.sc }
|