Austin Schuh | 272c613 | 2020-11-14 16:37:52 -0800 | [diff] [blame^] | 1 | table HelloReply { |
2 | message:string; | ||||
3 | } | ||||
4 | |||||
5 | table HelloRequest { | ||||
6 | name:string; | ||||
7 | } | ||||
8 | |||||
9 | rpc_service Greeter { | ||||
10 | SayHello(HelloRequest):HelloReply; | ||||
11 | SayManyHellos(HelloRequest):HelloReply (streaming: "server"); | ||||
12 | } |