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