This commit is contained in:
2024-03-01 20:28:14 +08:00
commit 076c21dc36
491 changed files with 84482 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
const controller = require('./controller');
// const mongoose = require('mongoose');
// const _ = require('underscore');
module.exports = function(){
this.bindHook('add_router', function(addRouter){
addRouter({
controller: controller,
method: 'get',
path: 'export',
action: 'exportData'
})
})
}