mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-09-20 12:46:17 +08:00
13 lines
243 B
Go
13 lines
243 B
Go
// manage task, such as file upload, file copy between accounts, offline download, etc.
|
|
package task
|
|
|
|
import "context"
|
|
|
|
type Task struct {
|
|
Name string
|
|
Func func(context.Context) error
|
|
Status string
|
|
Error error
|
|
Progress int
|
|
}
|