This commit is contained in:
2026-02-19 11:51:43 +08:00
parent 7cf1a3de97
commit 3090a60cf8
2 changed files with 3 additions and 3 deletions

View File

@@ -25,7 +25,6 @@ func BootAiStart(key string, ymd int) error {
// 构造任务列表
var tasks []func()
for _, row := range datas {
row := row // 避免闭包捕获循环变量
tasks = append(tasks, func() {
BootAiTask(row.ID, row.Code)
})