### 使用中间件
> 在应用中使用中间件
```
// config.default.js
config.middleware = ['auth'];
config.auth = {
abc:123
}
```
> 在路由中使用中间件
```
module.exports = app => {
const { router, controller } = app;
const auth = app.middleware.auth({'test':123456});
router.get('/',auth, controller.home.index);
};
```