0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00
ghost/core/server/scheduling/index.js

12 lines
267 B
JavaScript
Raw Normal View History

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