mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
11 lines
267 B
JavaScript
11 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);
|
|
};
|