1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-10 11:43:01 +03:00
Files
node-redis/lib/commands/PING.ts
2021-05-12 19:16:17 -04:00

8 lines
194 B
TypeScript

import { transformReplyString } from './generic-transformers';
export function transformArguments(): Array<string> {
return ['PING'];
}
export const transformReply = transformReplyString;