diff --git a/tools/tools.go b/tools/tools.go new file mode 100644 index 000000000..820b11a9d --- /dev/null +++ b/tools/tools.go @@ -0,0 +1,11 @@ +//go:build tools +// +build tools + +package tools + +import ( + _ "github.com/onsi/ginkgo/v2/ginkgo" +) + +// This file imports packages that are used when running go generate, or used +// during the development process but not otherwise depended on by built code.