美文网首页
protobuf编译

protobuf编译

作者: 风亡小窝 | 来源:发表于2020-02-18 10:14 被阅读0次
    protoc -I=./ --go_out=./ *.proto
    

    上述命令只会生成message,不会生成service相应的stub,生成stub需要指定plugins

    protoc -I=./ --go_out=plugins=grpc:./ *.proto
    

    相关文章

      网友评论

          本文标题:protobuf编译

          本文链接:https://www.haomeiwen.com/subject/ubowfhtx.html