chore: aria2 notifier

This commit is contained in:
Noah Hsu
2022-06-20 22:29:52 +08:00
parent 6c552a9d62
commit 1b3387ca1a
10 changed files with 92 additions and 29 deletions

12
internal/aria2/task.go Normal file
View File

@ -0,0 +1,12 @@
package aria2
import (
"github.com/alist-org/alist/v3/internal/driver"
"github.com/alist-org/alist/v3/pkg/task"
)
type Task struct {
Account driver.Driver
ParentDir string
T task.Task
}