Move transport to network/transport
This commit is contained in:
12
network/transport/grpc/proto/transport.proto
Normal file
12
network/transport/grpc/proto/transport.proto
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user