registers.js 705 B

12345678910111213141516171819202122232425262728
  1. /**
  2. * @created by pan
  3. * @updated by helin3 2019-04-05
  4. * @description Mock业务模块登记注册表
  5. * 特别注意:不要试图增加/改变/删除带${XXX}的注释行
  6. * TODO: 1) 导入你的模拟业务模块;2) 添加你的模拟业务模块
  7. */
  8. import oauth from './api/common/oauth'
  9. import crud from './api/common/crud'
  10. import article from './api/example/article'
  11. import demo from './api/example/demo'
  12. import subtable from './api/example/subtable'
  13. import content from './api/content/index'
  14. /** ${CliPluginMockApiAutoImport} Dangerous!!! */
  15. export default [
  16. ...oauth,
  17. ...crud,
  18. ...article,
  19. ...demo,
  20. ...subtable,
  21. ...content
  22. /** ${CliPluginMockApiAutoExport} Dangerous!!! */
  23. ]