6116b1f3c6
Update API Documentation / build-api-docs (push) Has been cancelled
Add complete FunASR codebase including models, runtime, and documentation.
12 lines
231 B
JavaScript
12 lines
231 B
JavaScript
import Mock from 'mockjs'
|
|
|
|
import getUserInfo from './user/getUserInfo.js'
|
|
import getMenuList from './user/getMenuList.js'
|
|
Mock.setup({
|
|
timeout: 500
|
|
})
|
|
|
|
console.log('启动mock请求数据')
|
|
getUserInfo(Mock)
|
|
getMenuList(Mock)
|