mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +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');
|
|
}
|
|
};
|