This commit is contained in:
2018-02-14 03:15:19 -05:00
parent 5800a0603e
commit 64b0def088
7 changed files with 159 additions and 68 deletions

View File

@ -16,4 +16,6 @@ module.exports = {
HGET: promisify(_client.HGET).bind(_client),
SADD: promisify(_client.SADD).bind(_client),
HSET: promisify(_client.HSET).bind(_client),
HGETALL: promisify(_client.HGETALL).bind(_client),
SMEMBERS: promisify(_client.SMEMBERS).bind(_client),
};