yapi/server/middleware/mockServer.js

7 lines
107 B
JavaScript

module.exports = async (ctx, next) => {
let hostname = ctx.hostname
if(next) await next();
}