0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00
ghost/core/server/lib/common/index.js
Hannah Wolfe c86933f44f
Remove common errors (#11848)
* 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>
2020-05-26 19:10:29 +01:00

13 lines
207 B
JavaScript

module.exports = {
get i18n() {
return require('./i18n');
},
get events() {
return require('./events');
},
get logging() {
return require('./logging');
}
};