mirror of
https://github.com/YMFE/yapi.git
synced 2025-01-06 12:45:22 +08:00
7 lines
107 B
JavaScript
7 lines
107 B
JavaScript
|
module.exports = async (ctx, next) => {
|
||
|
let hostname = ctx.hostname
|
||
|
|
||
|
|
||
|
|
||
|
if(next) await next();
|
||
|
}
|