Ghost/core/server/scheduling/index.js
2016-06-14 15:13:00 +02:00

12 lines
267 B
JavaScript

var 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);
};