mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-02-09 13:37:12 +02:00
Rather than the deprecated InstrumentationLibrary This is a replacement for https://github.com/open-telemetry/opentelemetry-go/pull/3104, as after this, there is no usage of `instrumentation.Library` within the SDK anymore. --------- Co-authored-by: Robert Pająk <pellared@hotmail.com> Co-authored-by: Sam Xie <sam@samxie.me>
10 lines
272 B
Go
10 lines
272 B
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package instrumentation // import "go.opentelemetry.io/otel/sdk/instrumentation"
|
|
|
|
// Library represents the instrumentation library.
|
|
//
|
|
// Deprecated: use [Scope] instead.
|
|
type Library = Scope
|