mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 02:11:44 +03:00
61dc9e8c24
- To keep in convention with settings described in - https://github.com/TryGhost/Ghost/issues/9528 , extracted routes handler into separate settings folder
22 lines
383 B
JavaScript
22 lines
383 B
JavaScript
module.exports = {
|
|
get bootstrap() {
|
|
return require('./bootstrap');
|
|
},
|
|
|
|
get registry() {
|
|
return require('./registry');
|
|
},
|
|
|
|
get helpers() {
|
|
return require('./helpers');
|
|
},
|
|
|
|
get CollectionRouter() {
|
|
return require('./CollectionRouter');
|
|
},
|
|
|
|
get TaxonomyRouter() {
|
|
return require('./TaxonomyRouter');
|
|
}
|
|
};
|