mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-01-05 22:54:18 +02:00
4818358f94
* Move dependencies of tools package to a tools directory * remove TOOLS_MOD_DIR from ALL_GO_MOD_DIRS in a Makefile. then run 'go mod tidy' on ALL_GO_MOD_DIRS and TOOLS_MOD_DIR. Co-authored-by: Rahul Patel <rghetia@yahoo.com>
10 lines
183 B
Go
10 lines
183 B
Go
// +build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/client9/misspell/cmd/misspell"
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
_ "golang.org/x/tools/cmd/stringer"
|
|
)
|