2023-05-30 17:31:02 +08:00
|
|
|
# Grpcall
|
2023-05-30 17:30:06 +08:00
|
|
|
|
|
|
|
|
|
|
|
## 生成 protoset file 命令
|
|
|
|
|
|
|
|
```
|
|
|
|
protoc --go_out=. \
|
|
|
|
--go-grpc_out=. \
|
|
|
|
--descriptor_set_out=device.protoset \
|
|
|
|
--include_imports \
|
|
|
|
./proto3/device.proto
|
|
|
|
```
|
|
|
|
|
|
|
|
## protoc 版本
|
|
|
|
```
|
|
|
|
protoc --version // libprotoc 3.20.3
|
|
|
|
```
|
|
|
|
|
|
|
|
## Credits
|
|
|
|
|
|
|
|
[https://github.com/rfyiamcool/grpcall](https://github.com/rfyiamcool/grpcall)
|