格式化代码

This commit is contained in:
flswld
2023-05-22 00:39:02 +08:00
parent f851ad1692
commit 3100e8b147
115 changed files with 38550 additions and 38546 deletions

View File

@@ -1,19 +1,20 @@
syntax = "proto3";
package gs.api;
option go_package = "hk4e/gs/api;api";
// GM 服务
service GM {
rpc Cmd (CmdRequest) returns (CmdReply) {}
rpc Cmd (CmdRequest) returns (CmdReply) {}
}
message CmdRequest {
string func_name = 1;
repeated string param_list = 2;
message CmdRequest {
string func_name = 1;
repeated string param_list = 2;
}
message CmdReply {
int32 code = 1; // 0 表示成功
string message = 2;
message CmdReply {
int32 code = 1; // 0 表示成功
string message = 2;
}