0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00
ghost/core/server/services/url/index.js
kirrg001 5f5f0021db 🔥 Drop Node v4 Support
no issue

- support ends today
- see https://github.com/nodejs/Release
- removed `use strict`
2018-05-01 14:06:18 +02:00

8 lines
226 B
JavaScript

const config = require('../../config'),
UrlService = require('./UrlService'),
urlService = new UrlService({
disableUrlPreload: config.get('disableUrlPreload')
});
// Singleton
module.exports = urlService;