wearefair / gurl

A tool for cURLing gRPC services.
MIT License
15 stars 4 forks source link

Allow for streaming returns #10

Open LaurEars opened 6 years ago

LaurEars commented 6 years ago

Currently, gurl only returns the first item in a stream and then stops.

Supporting streams would be super helpful.

service SomeRPCService { 
  rpc SomeRPC(SomeRPCRequest) returns (stream SomeRPCResponse);
}