14 lines
284 B
Protocol Buffer
14 lines
284 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package transport;
|
|
option go_package = "github.com/unistack-org/micro-network-transport-grpc/v3/proto;transport";
|
|
|
|
service Transport {
|
|
rpc Stream(stream Message) returns (stream Message) {}
|
|
}
|
|
|
|
message Message {
|
|
map<string, string> header = 1;
|
|
bytes body = 2;
|
|
}
|