mirror of
https://github.com/HChaZZY/alist.git
synced 2025-12-06 11:03:49 +08:00
11 lines
206 B
Go
11 lines
206 B
Go
// manage task, such as file upload, file copy between accounts, offline download, etc.
|
|
package task
|
|
|
|
type Task struct {
|
|
Name string
|
|
Status string
|
|
Error error
|
|
Finish bool
|
|
Children []*Task
|
|
}
|