miniflux-v2/internal/worker
jvoisin 645a817685 Use modern for loops
Go 1.22 introduced a new [for-range](https://go.dev/ref/spec#For_range)
construct that looks a tad better than the usual `for i := 0; i < N; i++`
construct. I also tool the liberty of replacing some
`for i := 0; i < len(myitemsarray); i++ { … myitemsarray[i] …}`
with  `for item := range myitemsarray` when `myitemsarray` contains only pointers.
2024-02-28 19:55:28 -08:00
..
pool.go Use modern for loops 2024-02-28 19:55:28 -08:00
worker.go Make internal/worker/worker.go read-only 2024-02-28 19:39:03 -08:00