Update golangci-lint from 1.49.0 to 1.53.3

Signed-off-by: iuriatan <iuriatan@gmail.com>
This commit is contained in:
iuriatan
2023-07-13 17:44:53 -03:00
parent 882edb3d63
commit b798aae9c5
15 changed files with 19 additions and 19 deletions

View File

@ -113,7 +113,7 @@ func authDecoder(k, v []byte) {
}
}
func authRolesDecoder(k, v []byte) {
func authRolesDecoder(_, v []byte) {
role := &authpb.Role{}
err := role.Unmarshal(v)
if err != nil {
@ -122,7 +122,7 @@ func authRolesDecoder(k, v []byte) {
fmt.Printf("role=%q, keyPermission=%v\n", string(role.Name), role.KeyPermission)
}
func authUsersDecoder(k, v []byte) {
func authUsersDecoder(_, v []byte) {
user := &authpb.User{}
err := user.Unmarshal(v)
if err != nil {