Replace `goroutine.Bounded` with `lib/group`
Created by: camdencheek
There were only two uses of goroutine.Bounded
, and it can be directly replaced with group.New().WithMaxConcurrency(n)
, so this replaces those uses. This is the start of unifying the lib/group
package
and the internal/goroutine
package.
Test plan
Unit tests.