1
0
mirror of https://github.com/zu1k/nali.git synced 2025-01-22 21:29:02 +08:00
nali/pkg/download/download.go
2022-10-24 09:51:19 +08:00

21 lines
350 B
Go

package download
import (
"errors"
"github.com/zu1k/nali/pkg/common"
)
func Download(filePath string, urls ...string) (data []byte, err error) {
if len(urls) == 0 {
return nil, errors.New("未指定下载 url")
}
data, err = common.GetHttpClient().Get(urls...)
if err != nil {
return
}
err = common.SaveFile(filePath, data)
return
}