mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-11 09:53:32 +03:00
10 lines
144 B
JavaScript
10 lines
144 B
JavaScript
|
module.exports = {
|
||
|
get handle() {
|
||
|
return require('./handle');
|
||
|
},
|
||
|
|
||
|
get input() {
|
||
|
return require('./input');
|
||
|
}
|
||
|
};
|