View gist:71db05a47ef0379c1f5b5374a3b39cb6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Protobuf: | |
service PetService { | |
// Finds pets by IDs | |
rpc findById(FindByIdRequest) returns (FindByIdResponse); | |
} | |
message FindByIdRequest { | |
// IDs to look up | |
repeated string ids = 1; |