Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 11 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | const Compose = require ('koa-compose') |
||
2 | |||
3 | const HttpError = require('./http_error') |
||
4 | const InternalError = require('./internal_error') |
||
|
|||
5 | const Input = require('./input') |
||
6 | |||
7 | module.exports = Compose([ |
||
8 | Input, |
||
9 | InternalError, |
||
10 | HttpError |
||
11 | ]) |
||
12 | |||
13 |