17 lines
218 B
Protocol Buffer
17 lines
218 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option go_package = "./pb";
|
||
|
|
||
|
package pb;
|
||
|
|
||
|
message StreamReq {
|
||
|
string name = 1;
|
||
|
}
|
||
|
|
||
|
message StreamResp {
|
||
|
string greet = 1;
|
||
|
}
|
||
|
|
||
|
service StreamGreeter {
|
||
|
rpc greet(StreamReq) returns (StreamResp);
|
||
|
}
|