I am import two different proto files in my current proto file as below
import "author/message/name.proto"
import "reader/message/details.proto"
in name.proto I have go_package = "author/message"
and in details.proto I have go_package = "reader/message"
because of which when pb.go is generated import alias is showing as below
message1 "author/message"
message2 "reader/message"
I am trying to find a way where i can name alias like authormsg and readermsg respectively during pb.go generation. I have checked documentation but couldnt find anyway to do that.