Guest User

Untitled

a guest
Jun 22nd, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. service Foo {
  2. rpc List(google.protobuf.Empty) returns (ListResponse) {}
  3. }
  4.  
  5. message ListResponse {
  6. repeated Foo results = 1;
  7. }
  8.  
  9. message Foo {...}
  10.  
  11. message ListRequest {
  12. int limit = 1;
  13. int offset = 2;
  14. }
  15.  
  16. rpc List(ListRequest) returns (ListResponse) {}
Add Comment
Please, Sign In to add comment