alist/internal/bootstrap/aria2.go

15 lines
294 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() {
_, err := aria2.InitClient(2)
if err != nil {
//utils.Log.Errorf("failed to init aria2 client: %+v", err)
utils.Log.Infof("Aria2 not ready.")
}
2022-06-29 09:37:40 +00:00
}