index.js 198 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import info from './balance'; let routers = [info]; routers.forEach(router => { router.path = `/balance${router.path}`; router.name = `balance.${router.name}`; }); export default routers;