tools.go 418 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. //go:build tools
  5. // +build tools
  6. package tools
  7. import (
  8. _ "github.com/calmh/xdr"
  9. _ "github.com/coreos/go-semver/semver"
  10. _ "github.com/maxbrunsfeld/counterfeiter/v6"
  11. _ "golang.org/x/tools/cmd/goimports"
  12. )