mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
08479f3816
- The helpers folder was full of things used for rendering pages - It belongs as its own service so that we can see what it really does
11 lines
254 B
JavaScript
11 lines
254 B
JavaScript
const registry = require('./registry');
|
|
const RouterManager = require('./router-manager');
|
|
const routerManager = new RouterManager({registry});
|
|
|
|
module.exports = {
|
|
routerManager: routerManager,
|
|
|
|
get registry() {
|
|
return registry;
|
|
}
|
|
};
|