Files
OpenList/internal/task/task.go

11 lines
206 B
Go
Raw Normal View History

2022-06-14 17:19:43 +08:00
// manage task, such as file upload, file copy between accounts, offline download, etc.
2022-06-06 22:08:39 +08:00
package task
2022-06-14 17:19:43 +08:00
type Task struct {
2022-06-15 19:20:36 +08:00
Name string
Status string
Error error
Finish bool
Children []*Task
2022-06-14 17:19:43 +08:00
}