forked from argoproj/argo-cd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtools.go
28 lines (23 loc) · 1.09 KB
/
tools.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//go:build tools
// +build tools
package tools
import (
// gogo/protobuf is vendored because the generated *.pb.go code imports it.
// Also, we need the gogo/protobuf/gogoproto/gogo.proto file
_ "github.com/gogo/protobuf/protoc-gen-gogofast"
// grpc-ecosystem/grpc-gateway is vendored because the generated *.pb.gw.go code imports it.
// Also, we need the .proto files under grpc-gateway/third_party/googleapis
_ "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway"
_ "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger"
// k8s.io/code-generator is vendored to get generate-groups.sh, and k8s codegen utilities
_ "k8s.io/code-generator"
_ "k8s.io/code-generator/cmd/client-gen"
_ "k8s.io/code-generator/cmd/deepcopy-gen"
_ "k8s.io/code-generator/cmd/defaulter-gen"
_ "k8s.io/code-generator/cmd/go-to-protobuf"
_ "k8s.io/code-generator/cmd/go-to-protobuf/protoc-gen-gogo"
_ "k8s.io/code-generator/cmd/informer-gen"
_ "k8s.io/code-generator/cmd/lister-gen"
// openapi-gen is vendored because upstream does not have tagged releases
_ "k8s.io/kube-openapi/cmd/openapi-gen"
)