delete unused structs

This commit is contained in:
Lunny Xiao
2022-11-25 17:48:45 +08:00
committed by Jason Song
parent 4c2d976629
commit 482832da76
19 changed files with 190 additions and 782 deletions
-4
View File
@@ -19,10 +19,6 @@ type TaskLog struct {
Content string `xorm:"LONGTEXT"`
}
func init() {
db.RegisterModel(new(TaskLog))
}
func GetTaskLogTableName(taskID int64) string {
return fmt.Sprintf("bots_task_log_%d", taskID)
}