mirror of
https://github.com/grassrootseconomics/eth-tracker.git
synced 2025-06-27 19:22:49 +02:00
12 lines
156 B
Go
12 lines
156 B
Go
package pool
|
|
|
|
import (
|
|
"runtime"
|
|
|
|
"github.com/gammazero/workerpool"
|
|
)
|
|
|
|
func NewPool() *workerpool.WorkerPool {
|
|
return workerpool.New(runtime.NumCPU())
|
|
}
|