mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-13 09:50:00 +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);
|
||
|
|
}
|