mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
24332c3d24
no issue Part of the effort to break up the Ghost codebase into smaller, decoupled modules.
7 lines
287 B
JavaScript
7 lines
287 B
JavaScript
const settingsCache = require('../settings/cache');
|
|
const i18n = require('../../../shared/i18n');
|
|
const ghostVersion = require('@tryghost/version');
|
|
const Notifications = require('./notifications');
|
|
|
|
module.exports.notifications = new Notifications({settingsCache, i18n, ghostVersion});
|