Move transport to network/transport

This commit is contained in:
Asim Aslam
2019-07-07 10:37:34 +01:00
parent eafc930f84
commit d2d6841f02
46 changed files with 49 additions and 49 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;
}