mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 05:37:34 +03:00
12 lines
303 B
JavaScript
12 lines
303 B
JavaScript
|
/**
|
||
|
* Minimal wrapper around our external lib
|
||
|
* Intended for passing any Ghost internals such as logging and config
|
||
|
*/
|
||
|
|
||
|
const JobManager = require('@tryghost/job-manager');
|
||
|
const logging = require('../../../shared/logging');
|
||
|
|
||
|
const jobManager = new JobManager(logging);
|
||
|
|
||
|
module.exports = jobManager;
|