mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
no issue - decreases chance of not-loaded modules or circular dependencies - e.g. the i18n implementation will use the settings-cache and the settings-cache uses lib/common/events
19 lines
285 B
JavaScript
19 lines
285 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
get i18n() {
|
|
return require('./i18n');
|
|
},
|
|
|
|
get events() {
|
|
return require('./events');
|
|
},
|
|
|
|
get errors() {
|
|
return require('./errors');
|
|
},
|
|
|
|
get logging() {
|
|
return require('./logging');
|
|
}
|
|
};
|