加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gen-proto.sh 908 Bytes
一键复制 编辑 原始数据 按行查看 历史
阿树_tju 提交于 2018-04-13 21:30 . support http get method
# change work dir to project dir
# cd $GOPATH/src/github.com/tronprotocol/grpc-gateway/protocol
# Generate gRPC stub
protoc -I=./protocol \
-I$GOPATH/src/github.com/tronprotocol/grpc-gateway/third_party/googleapis \
--go_out=plugins=grpc:../../../ \
./protocol/core/*.proto
protoc -I=./protocol \
-I$GOPATH/src/github.com/tronprotocol/grpc-gateway/third_party/googleapis \
--go_out=plugins=grpc:../../../ \
./protocol/api/*.proto
# Generate reverse-proxy
protoc -I=./protocol \
-I$GOPATH/src/github.com/tronprotocol/grpc-gateway/third_party/googleapis \
--grpc-gateway_out=logtostderr=true:../../../ \
./protocol/api/*.proto
# (Optional) Generate swagger definitions
protoc -I./protocol \
-I$GOPATH/src \
-I$GOPATH/src/github.com/tronprotocol/grpc-gateway/third_party/googleapis \
--swagger_out=logtostderr=true:../../../ \
./protocol/api/*.proto
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化