新增调试信息

This commit is contained in:
2025-10-27 22:15:25 +08:00
parent ae62457d8c
commit 04642cb2f0
5479 changed files with 683397 additions and 3450 deletions
+30
View File
@@ -0,0 +1,30 @@
syntax = "proto3";
package ConfigOptions;
option go_package = "../config";
message ParseConfigRequest {
string tempPath = 1;
string path = 2;
bool debug = 3;
}
message ParseConfigResponse {
optional string error = 1;
}
message GenerateConfigRequest {
string path = 1;
bool debug = 2;
}
message GenerateConfigResponse {
string config = 1;
optional string error = 2;
}
service CoreService {
rpc ParseConfig(ParseConfigRequest) returns (ParseConfigResponse);
rpc GenerateFullConfig(GenerateConfigRequest) returns (GenerateConfigResponse);
}