import config from 'lib/Config'; import Redis from 'ioredis'; const { port } = config.redis; const { host } = config.redis; export const client = new Redis(port, host); export default client;