1 安装protobuf后,可以将写的go代码,进行转换
先执行go get github.com/golang/protobuf/protoc-gen-go,安装protoc-gen-go.exe,再执行安装protobuf,输入go get github.com/golang/protobuf/proto,安装protoc.exe,或 者将网易云微服务课程资料里的protoc.exe直接拷贝到gopath下的bin文件夹里,
在test.go目录下执行protoc --go_out=. test.proto 如果成功会生成test.pb.go文件
参考:https://studygolang.com/articles/15462