build: 更新 go.mod 并添加新依赖

- 在 go.mod 中添加了 github.com/ECUST-XX/xml v1.20.2 依赖
- 更新了 go.sum 文件以包含新依赖的哈希值
- 在 ServerEvent.go
This commit is contained in:
2025-06-26 19:22:06 +08:00
parent fdac99f11c
commit ba46330056
6 changed files with 153 additions and 3 deletions

View File

@@ -58,7 +58,7 @@ func (s *Server) handleTcp(conn gnet.Conn) (action gnet.Action) {
}
//client := conn.RemoteAddr().String()
_ = s.workerPool.Submit(func() {
_ = s.workerPool.Submit(func() { //TODO 这里可能存在顺序执行问题,待修复
s.parser(conn, data)
})