tools.go 411 B

123456789101112131415
  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. // +build tools
  5. package tools
  6. import (
  7. _ "github.com/calmh/xdr"
  8. _ "github.com/gogo/protobuf/protoc-gen-gogofast"
  9. _ "github.com/maxbrunsfeld/counterfeiter/v6"
  10. _ "golang.org/x/tools/cmd/goimports"
  11. )