mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-09-20 04:36:09 +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
|
|
}
|