mirror of
https://github.com/samuelncui/yatm.git
synced 2026-01-07 05:46:39 +00:00
20 lines
144 B
Go
20 lines
144 B
Go
package tools
|
|
|
|
import "sync"
|
|
|
|
var (
|
|
wg sync.WaitGroup
|
|
)
|
|
|
|
func Working() {
|
|
wg.Add(1)
|
|
}
|
|
|
|
func Done() {
|
|
wg.Done()
|
|
}
|
|
|
|
func Wait() {
|
|
wg.Wait()
|
|
}
|