AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
## 编译成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