github.com/moby/docker@v26.1.3+incompatible/internal/tools/tools.go (about)

     1  //go:build tools
     2  
     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  
     9  import (
    10  	_ "github.com/gogo/protobuf/protoc-gen-gogo"
    11  	_ "github.com/gogo/protobuf/protoc-gen-gogofaster"
    12  	_ "github.com/gogo/protobuf/protoc-gen-gogoslick"
    13  	_ "github.com/golang/protobuf/protoc-gen-go"
    14  )