zhangzengfei
2025-02-12 f99b8a6d2ec0fc2414b939c3fef4d9338d13fce4
models/model.go
@@ -14,9 +14,10 @@
}
var modelRegistry = map[string]func() Model{
   "gather":    func() Model { return &GatherModel{} },
   "disappear": func() Model { return &DisappearModel{} },
   "location":  func() Model { return &LocationModel{} },
   "gather":           func() Model { return &GatherModel{} },
   "disappear":        func() Model { return &DisappearModel{} },
   "locationAnalysis": func() Model { return &LocationModel{} },
   "accessRegularity": func() Model { return &RegularityModel{} },
   // 添加其他模型
}