mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 02:11:44 +03:00
ed46f31c71
This reverts commit 3c36af63cf
.
26 lines
450 B
JavaScript
26 lines
450 B
JavaScript
module.exports = {
|
|
get bootstrap() {
|
|
return require('./bootstrap');
|
|
},
|
|
|
|
get registry() {
|
|
return require('./registry');
|
|
},
|
|
|
|
get settings() {
|
|
return require('./settings');
|
|
},
|
|
|
|
get helpers() {
|
|
return require('./helpers');
|
|
},
|
|
|
|
get CollectionRouter() {
|
|
return require('./CollectionRouter');
|
|
},
|
|
|
|
get TaxonomyRouter() {
|
|
return require('./TaxonomyRouter');
|
|
}
|
|
};
|