alist/internal/bootstrap/aria2.go

14 lines
253 B
Go
Raw Normal View History

2022-06-29 09:37:40 +00:00
package bootstrap
2022-06-29 10:56:31 +00:00
import (
"github.com/alist-org/alist/v3/internal/aria2"
2022-08-30 07:22:54 +00:00
"github.com/alist-org/alist/v3/pkg/utils"
2022-06-29 10:56:31 +00:00
)
2022-06-29 09:37:40 +00:00
func InitAria2() {
go func() {
2022-07-12 06:02:29 +00:00
_, err := aria2.InitClient(2)
2022-08-30 07:22:54 +00:00
utils.Log.Errorf("failed to init aria2 client: %+v", err)
2022-06-29 09:37:40 +00:00
}()
}