move transport (#1967)

This commit is contained in:
Asim Aslam
2020-08-23 18:37:22 +01:00
committed by GitHub
parent d60d85de5c
commit c62d1d5eb8
49 changed files with 56 additions and 56 deletions

View File

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