Annoyingly, a bit hard to unit test the logic as most of it is living in the main.go.
To solve this in a better way; we can refactor the parallel implementation to use a job queue with workers that pick job configuration off from a channel. I've created #35 to capture this
Fixes #34
Annoyingly, a bit hard to unit test the logic as most of it is living in the
main.go
.To solve this in a better way; we can refactor the parallel implementation to use a job queue with workers that pick job configuration off from a channel. I've created #35 to capture this