fix(build): Allow Services to be named Result (#1203)

closes #1156
This commit is contained in:
Shrutesh Pachineela
2022-12-21 12:07:07 -05:00
committed by GitHub
parent a72cf04b44
commit a562a3ce32
10 changed files with 86 additions and 21 deletions
@@ -0,0 +1,13 @@
syntax = "proto3";
import "google/protobuf/empty.proto";
package result;
service Result {
rpc Listen(google.protobuf.Empty) returns (Reply) {}
}
message Reply {
int32 step = 1;
}