mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-30 14:22:07 +03:00
9 lines
145 B
JavaScript
9 lines
145 B
JavaScript
|
module.exports = {
|
||
|
get config() {
|
||
|
return require('./config')();
|
||
|
},
|
||
|
get site() {
|
||
|
return require('./site')();
|
||
|
}
|
||
|
};
|