Import and usage of different package files in protobuf?
问题 I have imported an other proto which having different package name than mine. For usage of messages from other package, have accessed that message with package name. For Example : other.proto package muthu.other; message Other{ required float val = 1; } myproto.proto package muthu.test; import "other.proto"; message MyProto{ required string str = 1; optional muthu.other.Other.val = 2; } Is there a way to use val of muthu.other package directly like optional val = 2; instead of using muthu