micro/network/transport/grpc/proto/transport.proto

13 lines
203 B
Protocol Buffer
Raw Normal View History

2019-05-24 19:15:59 +03:00
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;
}