mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-25 10:28:45 +08:00
11 lines
154 B
Protocol Buffer
11 lines
154 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package ping;
|
||
|
option go_package = "./pb";
|
||
|
|
||
|
message Placeholder{}
|
||
|
|
||
|
service Greet {
|
||
|
rpc ping (Placeholder) returns (Placeholder);
|
||
|
}
|