mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
no issue Part of the effort to break up the Ghost codebase into smaller, decoupled modules.
6 lines
287 B
JavaScript
6 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});
|