mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-17 06:37:48 +00:00
11 lines
270 B
Go
11 lines
270 B
Go
//go:build tools
|
|
// +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/openshift/build-machinery-go"
|
|
)
|