在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
protoc 命令来自 https://github.com/google/protobuf, 由于这里没有 go 的产生代码, go的产生代码在 protoc-gen-go (https://github.com/golang/protobuf/)这里。
$ protoc --go_out=./go/ ./proto/helloworld.proto $ protoc --go_out=plugins=grpc:./go2/ ./proto/helloworld.proto 上面两个命令,第一个产生的只是 protobuffer 文件序列化和反序列化的代码。 第二个产生的则除了第一个的代码外,还增加服务器和客户端通讯、实现的公共库代码。 https://github.com/grpc/grpc-go 这里的代码对应的包名是:
$ go get -u github.com/golang/protobuf/protoc-gen-go |
请发表评论