mirror of
https://github.com/miniflux/v2.git
synced 2025-09-30 19:22:11 +00:00
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. |
||
|---|---|---|
| .. | ||
| ask_credentials.go | ||
| cleanup_tasks.go | ||
| cli.go | ||
| create_admin.go | ||
| daemon.go | ||
| export_feeds.go | ||
| flush_sessions.go | ||
| health_check.go | ||
| info.go | ||
| logger.go | ||
| refresh_feeds.go | ||
| reset_password.go | ||
| scheduler.go | ||