alist/internal/model/task.go
itsHenry 74f8295960
Some checks failed
build / Build (1.21, ubuntu-latest) (push) Has been cancelled
build_docker / Build Docker (push) Has been cancelled
build_docker / Build docker with aria2 (push) Has been cancelled
feat: persistant Task (#6925 close #5313)
2024-08-07 12:16:21 +08:00

7 lines
132 B
Go

package model
type TaskItem struct {
Key string `json:"key"`
PersistData string `gorm:"type:text" json:"persist_data"`
}