mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 18:00:24 +08:00
17 lines
228 B
Smarty
17 lines
228 B
Smarty
|
syntax = "proto3";
|
||
|
|
||
|
package {{.package}};
|
||
|
option go_package="./{{.package}}";
|
||
|
|
||
|
message Request {
|
||
|
string ping = 1;
|
||
|
}
|
||
|
|
||
|
message Response {
|
||
|
string pong = 1;
|
||
|
}
|
||
|
|
||
|
service {{.serviceName}} {
|
||
|
rpc Ping(Request) returns(Response);
|
||
|
}
|