Correct format of protoc go_package?

For pure proto generations you can do the following protoc –go_out=paths=source_relative:./gen -I. authenticator.proto or to generate for grpc the following can be used protoc –go_out=plugins=grpc:./gen –go_opt=paths=source_relative authenticator.proto If that fails you likely have a newer version of protoc and need to use the following command instead. protoc –go-grpc_out=./gen –go-grpc_opt=paths=source_relative authenticator.proto This is just Google making … Read more