lambda/parallel/parallel.go

11 lines
106 B
Go

package parallel
import (
)
var routineCount int = 1
func SetRoutineCount(n int) {
routineCount = n
}