1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-05-15 00:01:18 +00:00

16 lines
211 B
Go
Raw Normal View History

package common
import "sync"
func Parallel(tasks ...func()) {
var wg sync.WaitGroup
wg.Add(len(tasks))
for _, task := range tasks {
go func(task func()) {
task()
wg.Done()
}(task)
}
wg.Wait()
}