mirror of
https://github.com/go-micro/go-micro.git
synced 2024-12-30 10:10:44 +02:00
13 lines
203 B
Protocol Buffer
13 lines
203 B
Protocol Buffer
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;
|
|
}
|