I tried a Way in using proto files in which
I defined rpc components in proto B in Project B
Exmaple : rpc Line (RequestData) returns (ResponseInfoBase);
I defined message in Proto A which is in project A(different project)
Example : message RequestData { string Data = 1 ; }
message ResponseInfoBase { string Data = 1; } My question is am I able to import ProtoA to ProtoB?
