🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 编译成go文件 protoc --go_out=./ *proto 生成 xxxx.pb.go 文件 ## 添加rpc 服务 service 服务名{ rpc 函数名(参数,消息体) returns (返回值,消息) } 例如 message People{ string name = 1; } message Student{ int32 age =2 } service hello { rpc HelloWorld (People) returns (Student) } 修改编译指令 使用grpc方式编译 !!! protoc --go_out=plugins=grpc:./ *proto