UNPKG

apostrophe

Version:

The Apostrophe Content Management System.

11 lines (9 loc) 363 B
// This module is always the last module loaded by default by Apostrophe, // before any modules added by the user. It invokes the // `servicesReady` method of all modules that have one. This may // optionally take a callback. module.exports = { construct: function(self, options, callback) { self.callAllAndEmit('servicesReady', 'ready', callback); } };