blob: 811303c936425196460d4cc8ee64aa573fc7878f [file] [log] [blame]
Austin Schuhe89fa2d2019-08-14 20:24:23 -07001table HelloReply {
2 message:string;
3}
4
5table HelloRequest {
6 name:string;
7}
8
9table ManyHellosRequest {
10 name:string;
11 num_greetings:int;
12}
13
14rpc_service Greeter {
15 SayHello(HelloRequest):HelloReply;
16 SayManyHellos(ManyHellosRequest):HelloReply (streaming: "server");
17}