tools.go 428 B

12345678910111213141516
  1. // This file is never built. It serves to establish dependencies on tools
  2. // used by go generate and build.go. See
  3. // https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
  4. //go:build tools
  5. // +build tools
  6. package tools
  7. import (
  8. _ "github.com/calmh/xdr"
  9. _ "github.com/gogo/protobuf/protoc-gen-gogofast"
  10. _ "github.com/maxbrunsfeld/counterfeiter/v6"
  11. _ "golang.org/x/tools/cmd/goimports"
  12. )