index.js 180 B

1234567
  1. /**
  2. * @param {Egg.Application} app - egg application
  3. */
  4. module.exports = app => {
  5. require('./dictIndex')(app); // 字典目录
  6. require('./dictData')(app); // 字典内容
  7. };