github.com/nginxinc/kubernetes-ingress@v1.12.5/tools.go (about)

     1  //go:build tools
     2  // +build tools
     3  
     4  // This file just exists to ensure we download the tools we need for building
     5  // See https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
     6  
     7  package tools
     8  
     9  import (
    10  	_ "k8s.io/code-generator"
    11  	_ "sigs.k8s.io/controller-tools/cmd/controller-gen"
    12  )