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