mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 18:00:24 +08:00
9 lines
122 B
Protocol Buffer
9 lines
122 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package stream;
|
||
|
|
||
|
|
||
|
message placeholder{}
|
||
|
service greet{
|
||
|
rpc hello(placeholder)returns(placeholder);
|
||
|
}
|