Compare commits

..

No commits in common. "master" and "v1" have entirely different histories.
master ... v1

View File

@ -30,6 +30,7 @@ func main() {
// 1. Determine Download URL // 1. Determine Download URL
var downloadURL string = baseURL + filePath var downloadURL string = baseURL + filePath
fmt.Println("download path", downloadURL)
wg.Add(1) // Increment WaitGroup counter wg.Add(1) // Increment WaitGroup counter
go func(filePath, downloadURL string) { // Use goroutine for concurrent download go func(filePath, downloadURL string) { // Use goroutine for concurrent download