mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 05:37:34 +03:00
00c324fa4e
- Represents that logging is shared across all parts of Ghost at present
* moved core/server/lib/common/logging to core/shared/logging
* updated logging path for generic imports
* updated migration and schema imports of logging
* updated tests and index logging import
* 🔥 removed logging from common module
* fixed tests
10 lines
142 B
JavaScript
10 lines
142 B
JavaScript
module.exports = {
|
|
get i18n() {
|
|
return require('./i18n');
|
|
},
|
|
|
|
get events() {
|
|
return require('./events');
|
|
}
|
|
};
|