protoc -I=./ --go_out=./ *.proto
上述命令只会生成message,不会生成service相应的stub,生成stub需要指定plugins
protoc -I=./ --go_out=plugins=grpc:./ *.proto
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
网友评论