mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 09:52:06 +03:00
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');
|
|
}
|
|
};
|