test
This commit is contained in:
17
tools_build/tools.go
Normal file
17
tools_build/tools.go
Normal file
@@ -0,0 +1,17 @@
|
||||
//go:build tools
|
||||
// +build tools
|
||||
|
||||
// $ go install \
|
||||
// github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway \
|
||||
// github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2 \
|
||||
// google.golang.org/protobuf/cmd/protoc-gen-go \
|
||||
// google.golang.org/grpc/cmd/protoc-gen-go-grpc
|
||||
|
||||
package tools
|
||||
|
||||
import (
|
||||
_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway"
|
||||
_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2"
|
||||
_ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
|
||||
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
|
||||
)
|
||||
Reference in New Issue
Block a user