1
0
mirror of https://github.com/redis/go-redis.git synced 2025-06-11 03:21:38 +03:00

Merge pull request #1720 from leizihui/support-mapstrstr

hmset support map[string]string
This commit is contained in:
Vladimir Mihailenco
2021-04-09 08:40:11 +03:00
committed by GitHub

View File

@ -67,6 +67,11 @@ func appendArg(dst []interface{}, arg interface{}) []interface{} {
dst = append(dst, k, v)
}
return dst
case map[string]string:
for k, v := range arg {
dst = append(dst, k, v)
}
return dst
default:
return append(dst, arg)
}