Ghost/core/shared/i18n/index.js

7 lines
223 B
JavaScript
Raw Normal View History

const path = require('path');
const logging = require('@tryghost/logging');
const I18n = require('./i18n');
module.exports = new I18n({logging, basePath: path.join(__dirname, 'translations')});
module.exports.I18n = I18n;