github.com/pdmccormick/importable-docker-buildx@v0.0.0-20240426161518-e47091289030/tools/tools.go (about)

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