Ghost/core/frontend/services/theme-engine/i18n/index.js

8 lines
262 B
JavaScript
Raw Normal View History

const config = require('../../../../shared/config');
const logging = require('@tryghost/logging');
const ThemeI18n = require('./i18n');
module.exports = new ThemeI18n({logging, basePath: config.getContentPath('themes')});
module.exports.ThemeI18n = ThemeI18n;