0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00
ghost/core/server/services/route/base/Router.js
2017-11-01 15:55:06 +00:00

11 lines
190 B
JavaScript

'use strict';
var expressRouter = require('express').Router;
class Router {
constructor() {
this.router = expressRouter({mergeParams: true});
}
}
module.exports = Router;