* feat: kubesphere 4.0 Signed-off-by: ci-bot <ci-bot@kubesphere.io> * feat: kubesphere 4.0 Signed-off-by: ci-bot <ci-bot@kubesphere.io> --------- Signed-off-by: ci-bot <ci-bot@kubesphere.io> Co-authored-by: ks-ci-bot <ks-ci-bot@example.com> Co-authored-by: joyceliu <joyceliu@yunify.com>
14 lines
326 B
Go
14 lines
326 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "k8s.io/code-generator/cmd/client-gen"
|
|
_ "k8s.io/code-generator/cmd/deepcopy-gen"
|
|
_ "k8s.io/code-generator/cmd/informer-gen"
|
|
_ "k8s.io/code-generator/cmd/lister-gen"
|
|
_ "k8s.io/kube-openapi/cmd/openapi-gen"
|
|
_ "sigs.k8s.io/controller-tools/cmd/controller-gen"
|
|
)
|