mock平台

server.js 323B

123456789101112
  1. const exportSwaggerController = require('./controller');
  2. module.exports = function(){
  3. this.bindHook('add_router', function(addRouter){
  4. addRouter({
  5. controller: exportSwaggerController,
  6. method: 'get',
  7. path: 'exportSwagger',
  8. action: 'exportData'
  9. })
  10. })
  11. }