Ghost/core/server/services/url/index.js
Naz 6e075c78bf Moved URL service to backend
refs https://linear.app/tryghost/issue/CORE-104/decouple-frontend-routing-events-from-urlserver-events

- URL module is part of the backend heavily dependent on the model and fits perfectly here. Frontend should get the data it needs by passing a URL manager instance to it
2021-10-19 07:29:09 +13:00

6 lines
124 B
JavaScript

const UrlService = require('./UrlService');
const urlService = new UrlService();
// Singleton
module.exports = urlService;