// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0

//go:build linux || dragonfly || freebsd || netbsd || openbsd || solaris

package resource // import "go.opentelemetry.io/otel/sdk/resource"

import 

func readFile( string) (string, error) {
	,  := os.ReadFile() // nolint:gosec // false positive
	if  != nil {
		return "", 
	}

	return string(), nil
}