feat(vscode): 添加调试参数配置

为launch.json添加-debug=1参数,便于调试模式启动

docs(README): 补充zellij终端复用工具使用说明

添加x-cmd安装和zellij会话管理相关命令示例

refactor(config): 注释掉GamePort配置项

暂时注释GamePort配置项以解决配置冲突问题

refactor(xmlres): 移除未使用的gf框架依赖并注释文件监控逻辑

移除未使用的gctx、gfile、gfsnotify、glog导入包
注释init函数中的文件监控逻辑,避免不必要的文件监听
```
This commit is contained in:
2026-01-02 04:11:37 +08:00
parent 3e55b0f481
commit 699231ee38
19 changed files with 76526 additions and 157 deletions

View File

@@ -0,0 +1,22 @@
package admin
import (
"blazing/cool"
"blazing/modules/config/service"
)
type Tower110ConfigController struct {
*cool.Controller
}
func init() {
var task_info_controller = &Tower110ConfigController{
&cool.Controller{
Prefix: "/admin/config/tower110config",
Api: []string{"Add", "Delete", "Update", "Info", "List", "Page"},
Service: service.NewTower110Service(),
},
}
// 注册路由
cool.RegisterController(task_info_controller)
}