mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
1b965fab95
no issue Move `core/server/scheduling` to `core/server/adapters/scheduling` and `core/server/storage` to `core/server/adapters/storage`
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);
|
|
};
|