UNPKG

170 BJavaScriptView Raw
1/*eslint no-process-env: "off" */
2const Redis = require('ioredis');
3
4const createClient = (host, port) => new Redis({host, port, db: 10});
5
6module.exports = createClient;
\No newline at end of file