Files
open-cluster-management/pkg/dependencymagnet/doc.go
2020-05-11 17:13:05 +08:00

13 lines
407 B
Go

// +build tools
// 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
// for our build to work.
package dependencymagnet
import (
_ "github.com/jteeuwen/go-bindata/go-bindata"
_ "github.com/open-cluster-management/api/cluster/v1"
_ "github.com/open-cluster-management/api/work/v1"
_ "github.com/openshift/build-machinery-go"
)