blob: 811303c936425196460d4cc8ee64aa573fc7878f [file] [log] [blame]
Austin Schuh272c6132020-11-14 16:37:52 -08001table 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}