# README
Download - File Download, support parallel
Installation
To install the package, run:
go get github.com/go-zoox/download
Getting Started
func TestDownload(t *testing.T) {
url := "YOUR_FILE_URL"
fileName := "test.mp4"
err := Download(url, &Config{
FilePath: fileName,
})
if err != nil {
t.Error(err)
}
}
Functions
- Parallel
- Progress
License
GoZoox is released under the MIT License.