Skip to content

Instantly share code, notes, and snippets.

@soundornoise
soundornoise / waitgroup.go
Created September 19, 2020 11:52
Golang WaitGroups template
package main
func goroutineWithWaitGroup() {
wg := sync.WaitGroup{}
wg.Add(1)
go func(wg *sync.WaitGroup) {
defer wg.Done()
// ...
}(&wg)