1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-14 21:21:31 +03:00

add support for most of the "keys commands"

This commit is contained in:
leibale
2021-06-11 13:25:01 -04:00
parent eaefe9d80f
commit 199a94fc89
38 changed files with 897 additions and 6 deletions

View File

@@ -1,5 +1,8 @@
import COMMON_COMMANDS from './index';
import * as MOVE from './MOVE';
export default {
...COMMON_COMMANDS
...COMMON_COMMANDS,
MOVE,
move: MOVE
};