怎么在go语言中使用google protocol Buffer呢?
1、下载相应的proto版本:https://github.com/google/protobuf/releases
2、把bin下的protoc文件 copy到GOPATH目录和/usr/local/bin目录里
3、下载protoc-gen-go插件:https://github.com/golang/protobuf/
4、把上述文件拷贝到GOPATH路径下
5、cd到protobuf下执行make
6、到GOPATH目录下的bin目录中找到可执行文件protoc-gen-go,拷贝到/usr/local/bin里
7、编写protobuf文件,执行编译命令protoc --go_out=. xxx.proto
来源:https://www.cnblogs.com/zhenxing1114/p/5950485.html