tools.go 563 B

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