//go:build tools // +build tools // This file exists to force 'go mod' to fetch tool dependencies. // See: https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module // // If the tool you are importing is used in a specific context, consider creating // a package-specific tools.go so that the import of the tool being used is // close to it's usage. e.g., hack/tools/gcr-cleaner package tools import ( _ "cuelang.org/go/cmd/cue" _ "github.com/99designs/gqlgen" _ "github.com/drone/envsubst/v2/cmd/envsubst" _ "github.com/google/addlicense" _ "github.com/google/go-containerregistry/cmd/crane" _ "github.com/google/go-containerregistry/cmd/gcrane" _ "github.com/instrumenta/kubeval" _ "golang.org/x/tools/cmd/gorename" _ "sigs.k8s.io/controller-tools/cmd/controller-gen" )