github.com/openshift/installer@v1.4.17/tools.go (about)

     1  //go:build tools
     2  // +build tools
     3  
     4  // Official workaround to track tool dependencies with go modules:
     5  // https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
     6  
     7  package tools
     8  
     9  import (
    10  	_ "github.com/daixiang0/gci" // dependency of hack/go-fmt.sh
    11  	// used to generate mocks
    12  	_ "github.com/golang/mock/mockgen"
    13  	// dependency of generating CRD for install-config
    14  	_ "sigs.k8s.io/controller-tools/cmd/controller-gen"
    15  )