syntax = "proto3";
package hello;
service HelloService {
rpc SayHello(HelloReq) returns (HelloResp) {};
}
message HelloReq {
string Name = 1;
}
message HelloResp {
string Result = 1;
}
message CustomError {
string Error = 1;
}
Могу ли я сделать так, чтобы мой сервер отправил CustomError, если в запросе есть ошибка?