refactor(common): 移除未使用的XML解析测试代码

移除test_test.go中未完成的Mapxml函数和login/main.go中的
XML解析注释代码,清理无用的导入包,优化代码结构

BREAKING CHANGE: 删除了modules/config/model/map_moster_node.go
文件中的MapPit相关模型定义
```
This commit is contained in:
昔念
2026-02-24 12:53:07 +08:00
parent 5e1204ab2f
commit 6c26e448fd
8 changed files with 772 additions and 1440 deletions

View File

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