我正在尝试复制使用protoc生成timestamp.proto的方式 我尝试使用此命令
cd vendor/github.com/golang/protobuf/ptypes
protoc -I timestamp/ timestamp/timestamp.proto --go_out=plugins=grpc:timestamp
,但它与timestamp.pb.go文件生成的方式不同
它与proto.RegisterFile
我生成的文件是proto.RegisterFile("timestamp.proto", fileDescriptor0)
原始版本为proto.RegisterFile("google/protobuf/timestamp.proto", fileDescriptor0)