Reputation: 2087
I have a gRPC server, and I want to call this server by local channel like:
other message -> adapter -> local grpc client -> local grpc server
so how to create a local grpc client?, use local channel to build stub?
Upvotes: 1
Views: 4869
Reputation: 241
if you want a cli type of call to your local grpc server, you could checkout https://github.com/fullstorydev/grpcurl
Upvotes: 1
Reputation: 26474
Two options:
Upvotes: 3