mirror of
https://github.com/misskey-dev/misskey
synced 2024-12-05 02:09:02 +09:00
11 lines
191 B
TypeScript
11 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
|
||
|
}
|
||
|
});
|