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
30 lines
477 B
JavaScript
30 lines
477 B
JavaScript
module.exports = {
|
|
get headers() {
|
|
return require('./headers');
|
|
},
|
|
|
|
get http() {
|
|
return require('./http');
|
|
},
|
|
|
|
get Frame() {
|
|
return require('./frame');
|
|
},
|
|
|
|
get pipeline() {
|
|
return require('./pipeline');
|
|
},
|
|
|
|
get validators() {
|
|
return require('./validators');
|
|
},
|
|
|
|
get serializers() {
|
|
return require('./serializers');
|
|
},
|
|
|
|
get utils() {
|
|
return require('./utils');
|
|
}
|
|
};
|