fix: apply go fix updates (any, range loop, slices, maps)

This commit is contained in:
2026-06-16 13:36:45 +02:00
committed by Milas Holsting
parent 8f0549b290
commit bc7a3f58cf
6 changed files with 17 additions and 19 deletions

View File

@@ -176,5 +176,5 @@ func commandPaletteLimit(limit int64) int64 {
}
type scanner interface {
Scan(dest ...interface{}) error
Scan(dest ...any) error
}