687e68d5de
refs https://github.com/TryGhost/Toolbox/issues/363 - this API framework is standalone and should be pulled out into a separate package so we can define its boundaries more clearly, and promote better testing of smaller parts
14 lines
207 B
JavaScript
14 lines
207 B
JavaScript
module.exports = {
|
|
get handle() {
|
|
return require('./handle');
|
|
},
|
|
|
|
get input() {
|
|
return require('./input');
|
|
},
|
|
|
|
get output() {
|
|
return require('./output');
|
|
}
|
|
};
|