forked from openshift/machine-config-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tools.go
21 lines (19 loc) · 819 Bytes
/
tools.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// +build tools
// tools is a dummy package that will be ignored for builds, but included for dependencies.
package tools
import (
// Code generators built at runtime.
_ "k8s.io/code-generator" // TODO: Investigate why scripts in this directory are removed and not vendored by go mod.
_ "k8s.io/code-generator/cmd/client-gen"
_ "k8s.io/code-generator/cmd/conversion-gen"
_ "k8s.io/code-generator/cmd/deepcopy-gen"
_ "k8s.io/code-generator/cmd/defaulter-gen"
_ "k8s.io/code-generator/cmd/informer-gen"
_ "k8s.io/code-generator/cmd/lister-gen"
_ "github.com/go-bindata/go-bindata"
_ "github.com/go-bindata/go-bindata/go-bindata"
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
_ "github.com/securego/gosec/cmd/gosec"
// TODO: Investigate openapi-gen
// _ "k8s.io/code-generator/cmd/openapi-gen"
)