mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 21:53:08 +02:00
10 lines
191 B
TypeScript
10 lines
191 B
TypeScript
import { createQueue } from 'kue';
|
|
import config from './conf';
|
|
|
|
export default createQueue({
|
|
redis: {
|
|
port: config.redis.port,
|
|
host: config.redis.host,
|
|
auth: config.redis.pass
|
|
}
|
|
});
|