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

13 lines
203 B
Protocol Buffer
Raw Permalink Normal View History

2020-08-23 20:37:22 +03:00
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;
}