UNPKG

apim-tools

Version:

APIM Tools

13 lines (9 loc) 232 B
/** * @file mock 请求的处理器 * @author sparklewhy@gmail.com */ 'use strict'; const mockHandler = require('../mock'); module.exports = exports = function (context, next) { return mockHandler(context, null, next); };