Update golangci-lint and fix lint errors

This commit is contained in:
Deluan 2023-02-02 11:10:28 -05:00
parent cf04db7a98
commit 0ce750d469
4 changed files with 109 additions and 92 deletions

View file

@ -57,9 +57,7 @@ func (rr *RefreshResource) With(resource string, ids ...string) *RefreshResource
if len(ids) == 0 {
rr.resources[resource] = append(rr.resources[resource], Any)
}
for i := range ids {
rr.resources[resource] = append(rr.resources[resource], ids[i])
}
rr.resources[resource] = append(rr.resources[resource], ids...)
return rr
}