Files
electron-egg/app/middleware/auth.js
gaoshuaixing 066d9249c0 init
2020-11-02 16:40:37 +08:00

9 lines
109 B
JavaScript

'use strict';
module.exports = () => {
return async function auth(ctx, next) {
await next();
};
};