aozhiwei e09875175e 1
2022-08-02 15:33:54 +08:00

13 lines
183 B
JavaScript

const controllers = {};
function add(name) {
controllers[name] = require(`./${name}`);
controllers[name].init();
}
function init() {
add('bcservice');
}
exports.init = init;