主页

索引

模块索引

搜索页面

protoc-gen-go

默认没有golang的插件, protoc-gen-go 是protobuf 编译插件 系列中的 Go 版本。但1.4版后的维护放在 这儿 对应的github地址是 这儿2

安装:

// 1.4版本之前
$ go install github.com/golang/protobuf/protoc-gen-go

// 1.4版本之后
$ go install google.golang.org/protobuf/cmd/protoc-gen-go
or
$ go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.26

使用:

protoc --go_out=output_directory input_directory/file.proto

主页

索引

模块索引

搜索页面