* reactor alert * optimize * add test case * update the target directory in case proto contains option * fix missing comments and format code
10 lines
128 B
Protocol Buffer
10 lines
128 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package stream;
|
|
|
|
|
|
message placeholder {}
|
|
|
|
service greet {
|
|
rpc hello (placeholder) returns (placeholder);
|
|
} |