micro--go-micro
230505bf5a
* Add grpc plugin * remove stale readmes
15 行
245 B
Protocol Buffer
15 行
245 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "./proto;transport";
|
|
|
|
package go.micro.transport.grpc;
|
|
|
|
service Transport {
|
|
rpc Stream(stream Message) returns (stream Message) {}
|
|
}
|
|
|
|
message Message {
|
|
map<string, string> header = 1;
|
|
bytes body = 2;
|
|
}
|