Skip to content

Instantly share code, notes, and snippets.

View gist:71db05a47ef0379c1f5b5374a3b39cb6
Protobuf:
service PetService {
// Finds pets by IDs
rpc findById(FindByIdRequest) returns (FindByIdResponse);
}
message FindByIdRequest {
// IDs to look up
repeated string ids = 1;