Skip to content

Instantly share code, notes, and snippets.

@pandemicsyn
Created October 18, 2013 14:49
Show Gist options
  • Select an option

  • Save pandemicsyn/7042675 to your computer and use it in GitHub Desktop.

Select an option

Save pandemicsyn/7042675 to your computer and use it in GitHub Desktop.
var wg sync.WaitGroup
for i := 0; i < 200; i++ {
wg.Add(1)
go blastSwift("images", token, url, &wg)
}
fmt.Println("Waiting on survivors")
wg.Wait()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment