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
|
|
|
|
|
|
|
|
import "context"
|
|
|
|
|
|
|
|
|
|
type Task struct {
|
2022-06-15 18:06:42 +08:00
|
|
|
Name string
|
|
|
|
|
Func func(context.Context) error
|
|
|
|
|
Status string
|
|
|
|
|
Error error
|
|
|
|
|
Finish bool
|
2022-06-14 17:19:43 +08:00
|
|
|
}
|