blob: 6089e0a7f1dea8bd87a0da600a937a5ea8656a4e (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { createQueue } from 'kue';
import config from './conf';
export default createQueue({
redis: {
port: config.redis.port,
host: config.redis.host,
auth: config.redis.pass
}
});
|