20 lines
514 B
Go
20 lines
514 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
/*
|
|
* Copyright 2024 the KubeSphere Authors.
|
|
* Please refer to the LICENSE file in the root directory of the project.
|
|
* https://github.com/kubesphere/kubesphere/blob/master/LICENSE
|
|
*/
|
|
|
|
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"
|
|
)
|