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