1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-12-04 17:58:10 +09:00
hotomoe/src/queue.ts

11 lines
193 B
TypeScript
Raw Normal View History

2018-03-29 01:20:40 +09:00
import { createQueue } from 'kue';
2018-04-02 13:15:53 +09:00
import config from './config';
2018-03-29 01:20:40 +09:00
export default createQueue({
redis: {
port: config.redis.port,
host: config.redis.host,
auth: config.redis.pass
}
});