1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1x 7x 7x | /**
* Custom middlewares loaded here
**/
'use strict';
module.exports = (app) => {
const middlewares = app._custom_middlewares;
for (let middleware of middlewares) {
app.use(middleware);
}
};
|