测试:修改初始化获取数据

This commit is contained in:
luying
2022-04-06 10:45:03 +08:00
parent f0f7faee47
commit 2dffa0204f
4 changed files with 46 additions and 9 deletions

View File

@@ -12,6 +12,7 @@ import ExportTest from '../../../app/service/Test';
import ExportTurboCore from '../../../app/service/TurboCore';
import ExportUpdate from '../../../app/service/Update';
import ExportUtils from '../../../app/service/Utils';
import ExportWjx from '../../../app/service/Wjx';
declare module 'egg' {
interface IService {
@@ -21,5 +22,6 @@ declare module 'egg' {
turboCore: AutoInstanceType<typeof ExportTurboCore>;
update: AutoInstanceType<typeof ExportUpdate>;
utils: AutoInstanceType<typeof ExportUtils>;
wjx: AutoInstanceType<typeof ExportWjx>;
}
}