mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 09:40:24 +08:00
10 lines
171 B
Protocol Buffer
10 lines
171 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package stream;
|
||
|
|
||
|
option go_package="github.com/tal-tech/go-zero";
|
||
|
|
||
|
message placeholder{}
|
||
|
service greet{
|
||
|
rpc hello(placeholder)returns(placeholder);
|
||
|
}
|