mirror of
https://gitee.com/dromara/electron-egg.git
synced 2026-05-15 04:02:10 +08:00
9 lines
109 B
JavaScript
9 lines
109 B
JavaScript
'use strict';
|
|
|
|
module.exports = () => {
|
|
return async function auth(ctx, next) {
|
|
|
|
await next();
|
|
};
|
|
};
|