1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-06 00:48:45 +01:00
Files
installer/tools.go
Yaakov Selkowitz 3ef9a63eb7 Fix gofmt for 1.17
2021-11-18 01:35:26 -05:00

19 lines
447 B
Go

//go:build tools
// +build tools
// Official workaround to track tool dependencies with go modules:
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
package tools
import (
// dependency of hack/go-lint.sh
_ "golang.org/x/lint"
// dependency of generating CRD for install-config
_ "sigs.k8s.io/controller-tools/cmd/controller-gen"
// used to generate mocks
_ "github.com/golang/mock/mockgen"
)