1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-05 06:46:36 +01:00
Files
installer/tools.go
Rafael Fonseca 6039d415ec tooling: add gci tool to standardize import order
The imports are ordered in 4 sections:
 - standard lib
 - default imports
 - prefix(github.com/openshift)
 - blank imports (_ <import_path>)
2022-12-13 15:40:57 +01:00

18 lines
507 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-fmt.sh
_ "github.com/daixiang0/gci"
// used to generate mocks
_ "github.com/golang/mock/mockgen"
// 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"
)