build: List go:generate tools in tools.go (#7599)

This commit is contained in:
greatroar
2021-05-08 12:52:06 +02:00
committed by GitHub
parent 7bbca12ff8
commit 3746c899b7
14 changed files with 46 additions and 30 deletions
+14
View File
@@ -0,0 +1,14 @@
// This file is never built. It serves to establish dependencies on tools
// used by go generate and build.go. See
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
// +build tools
package tools
import (
_ "github.com/calmh/xdr"
_ "github.com/gogo/protobuf/protoc-gen-gogofast"
_ "github.com/maxbrunsfeld/counterfeiter/v6"
_ "golang.org/x/tools/cmd/goimports"
)