tools.go 579 B

123456789101112131415
  1. //go:build tools
  2. // +build tools
  3. // Package tools tracks dependencies on binaries not referenced in this codebase.
  4. // https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
  5. // Disclaimer: Avoid adding tools that don't need to be inferred from go.mod
  6. // like golangci-lint and check they don't import too many dependencies.
  7. package tools
  8. import (
  9. _ "github.com/gogo/protobuf/protoc-gen-gogo"
  10. _ "github.com/gogo/protobuf/protoc-gen-gogofaster"
  11. _ "github.com/gogo/protobuf/protoc-gen-gogoslick"
  12. _ "github.com/golang/protobuf/protoc-gen-go"
  13. )