Files
electron-egg/app/middleware/auth.js
gaoshuaixing be06d62916 1
2020-12-30 11:39:20 +08:00

9 lines
109 B
JavaScript

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