mirror of
https://github.com/Chenyu550/alist-fork.git
synced 2025-06-10 14:46:53 -04:00
10 lines
139 B
Go
10 lines
139 B
Go
package bootstrap
|
|
|
|
import "github.com/alist-org/alist/v3/internal/aria2"
|
|
|
|
func InitAria2() {
|
|
go func() {
|
|
_ = aria2.InitClient(2)
|
|
}()
|
|
}
|