forked from sneak/secret
Convert traditional for loops to use the new Go 1.22+ integer range syntax: - for i := 0; i < n; i++ → for i := range n (when index is used) - for i := 0; i < n; i++ → for range n (when index is not used) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| cli_test.go | ||
| cli.go | ||
| crypto.go | ||
| generate.go | ||
| init.go | ||
| integration_test.go | ||
| root.go | ||
| secrets.go | ||
| test_helpers.go | ||
| test_output_test.go | ||
| unlockers.go | ||
| vault.go | ||
| version_test.go | ||
| version.go | ||