Add grpc transport

This commit is contained in:
Asim Aslam
2019-05-24 17:15:59 +01:00
parent b926ae81bb
commit 25a0d05ac9
8 changed files with 793 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
syntax = "proto3";
package go.micro.grpc.transport;
service Transport {
rpc Stream(stream Message) returns (stream Message) {}
}
message Message {
map<string, string> header = 1;
bytes body = 2;
}