perf与性能优化

This commit is contained in:
flswld
2023-04-15 20:00:37 +08:00
parent 149b773f4b
commit 094ad5add0
26 changed files with 403 additions and 308 deletions

View File

@@ -3,17 +3,14 @@ syntax = "proto3";
package gs.api;
option go_package = "hk4e/gs/api;api";
//import "natsrpc.proto";
//import "testdata.proto";
// GM 服务
service GM {
rpc Cmd (CmdRequest) returns (CmdReply) {}
}
message CmdRequest {
string func_name = 1;
repeated string param = 2;
string func_name = 1;
repeated string param_list = 2;
}
message CmdReply {