...

Source file src/edge-infra.dev/hack/tools/tools.go

Documentation: edge-infra.dev/hack/tools

     1  //go:build tools
     2  // +build tools
     3  
     4  // This file exists to force 'go mod' to fetch tool dependencies.
     5  // See: https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
     6  //
     7  // If the tool you are importing is used in a specific context, consider creating
     8  // a package-specific tools.go so that the import of the tool being used is
     9  // close to it's usage. e.g., hack/tools/gcr-cleaner
    10  
    11  package tools
    12  
    13  import (
    14  	_ "cuelang.org/go/cmd/cue"
    15  	_ "github.com/99designs/gqlgen"
    16  	_ "github.com/drone/envsubst/v2/cmd/envsubst"
    17  	_ "github.com/google/addlicense"
    18  	_ "github.com/google/go-containerregistry/cmd/crane"
    19  	_ "github.com/google/go-containerregistry/cmd/gcrane"
    20  	_ "github.com/instrumenta/kubeval"
    21  	_ "golang.org/x/tools/cmd/gorename"
    22  	_ "sigs.k8s.io/controller-tools/cmd/controller-gen"
    23  )
    24  

View as plain text