写好abc.proto文件后
执行 protoc --go_out=plugins=grpc:. abc.proto
控制台输出告警如下
WARNING: Missing 'go_package' option in "abc.proto",
please specify it with the full Go package path as
a future release of protoc-gen-go will require this be specified.
解决办法:
在proto头部文件添加一行配置
option go_package = ".;abc";
.代表当前文件夹,分号后面是生成go文件引入的包名,abc具体的值根据项目需求而定。
网友评论