UNPKG

redis-smq

Version:

A simple high-performance Redis message queue for Node.js.

9 lines 288 B
import _ from 'lodash'; import { ERedisConfigClient } from 'redis-smq-common'; const defaultConfig = { client: ERedisConfigClient.IOREDIS, }; export default function Redis(userConfig) { return _.merge({}, defaultConfig, userConfig.redis ?? {}); } //# sourceMappingURL=redis.js.map