Does the rpc syntax in proto3 allow null requests or responses? e.g. I want the equivalent of the following: rpc Logout; rpc Status returns (Status); rpc Log (LogData); Or...
I’m recently using gRPC with proto3, and I’ve noticed that required and optional has been removed in new syntax. Would anyone kindly explain why required/optional are removed in proto3?...