Ghost/core/server/services/notifications/index.js
Sam Lord 24332c3d24 Replaced ghost-version.js with @tryghost/version
no issue
Part of the effort to break up the Ghost codebase into smaller, decoupled modules.
2021-06-16 13:16:15 +01:00

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});