...

Source file src/github.com/openshift/client-go/dependencymagnet/doc.go

Documentation: github.com/openshift/client-go/dependencymagnet

     1  // +build tools
     2  
     3  // go mod won't pull in code that isn't depended upon, but we have some code we don't depend on from code that must be included
     4  // for our build to work.
     5  package dependencymagnet
     6  
     7  import (
     8  	_ "github.com/spf13/pflag"
     9  	_ "k8s.io/code-generator"
    10  )
    11  

View as plain text