chore: init db and aria2

This commit is contained in:
Noah Hsu
2022-06-29 17:37:40 +08:00
parent 8abee6504f
commit 3c7a2f78cf
5 changed files with 208 additions and 5 deletions

View File

@ -0,0 +1,9 @@
package bootstrap
import "github.com/alist-org/alist/v3/internal/aria2"
func InitAria2() {
go func() {
_ = aria2.InitClient(2)
}()
}