| 12345678910111213141516171819202122232425262728 |
- /**
- * @created by pan
- * @updated by helin3 2019-04-05
- * @description Mock业务模块登记注册表
- * 特别注意:不要试图增加/改变/删除带${XXX}的注释行
- * TODO: 1) 导入你的模拟业务模块;2) 添加你的模拟业务模块
- */
- import oauth from './api/common/oauth'
- import crud from './api/common/crud'
- import article from './api/example/article'
- import demo from './api/example/demo'
- import subtable from './api/example/subtable'
- import content from './api/content/index'
- /** ${CliPluginMockApiAutoImport} Dangerous!!! */
- export default [
- ...oauth,
- ...crud,
- ...article,
- ...demo,
- ...subtable,
- ...content
- /** ${CliPluginMockApiAutoExport} Dangerous!!! */
- ]
|