mirror of
https://gitee.com/lauix/HFish
synced 2025-05-11 04:18:02 +08:00
13 lines
187 B
Go
13 lines
187 B
Go
package pool
|
|
|
|
import (
|
|
"sync"
|
|
"github.com/panjf2000/ants"
|
|
)
|
|
|
|
func New(size int) (sync.WaitGroup, *ants.Pool) {
|
|
wg := sync.WaitGroup{}
|
|
pool, _ := ants.NewPool(size)
|
|
return wg, pool
|
|
}
|