mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
c86933f44f
* refactored core/frontend/services/proxy to import common dependency like a normal person
* removed all imports of `common/errors`
* 🔥 removed common/errors module
Co-authored-by: Vikas Potluri <vikaspotluri123.github@gmail.com>
13 lines
207 B
JavaScript
13 lines
207 B
JavaScript
module.exports = {
|
|
get i18n() {
|
|
return require('./i18n');
|
|
},
|
|
|
|
get events() {
|
|
return require('./events');
|
|
},
|
|
|
|
get logging() {
|
|
return require('./logging');
|
|
}
|
|
};
|