コード例 #1
0
ファイル: helper.go プロジェクト: limbo-services/protobuf
func IsProto3(file *google_protobuf.FileDescriptorProto) bool {
	return file.GetSyntax() == "proto3"
}
コード例 #2
0
ファイル: file.go プロジェクト: limbo-services/protobuf
func NotInPackageGoogleProtobuf(file *descriptor.FileDescriptorProto) bool {
	return !strings.HasPrefix(file.GetPackage(), "google.protobuf")
}