Ghost/core/server/adapters/scheduling/index.js

12 lines
269 B
JavaScript
Raw Normal View History

const postScheduling = require(__dirname + '/post-scheduling');
/**
* scheduling modules:
* - post scheduling: publish posts/pages when scheduled
*/
exports.init = function init(options) {
options = options || {};
return postScheduling.init(options);
};