opentelemetry-collector-rel.../internal/tools/tools.go

16 lines
518 B
Go

// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
//go:build tools
package tools // import "go.opentelemetry.io/collector/internal/tools"
// This file follows the recommendation at
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
// on how to pin tooling dependencies to a go.mod file.
// This ensures that all systems use the same version of tools in addition to regular dependencies.
import (
_ "go.opentelemetry.io/build-tools/chloggen"
)