mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-25 05:07:44 +08:00
12 lines
264 B
Go
12 lines
264 B
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
//go:build linux
|
|
// +build linux
|
|
|
|
package resource // import "go.opentelemetry.io/otel/sdk/resource"
|
|
|
|
var platformHostIDReader hostIDReader = &hostIDReaderLinux{
|
|
readFile: readFile,
|
|
}
|