12345678910111213141516171819202122232425262728293031323334353637383940 |
- /**
- * Cypress Mock Handlers Index
- * 统一导出所有 mock handlers
- */
- // 系统相关
- export * from './handlers/system';
- // 国际化相关
- export * from './handlers/i18n';
- // 用户相关
- export * from './handlers/user';
- // 认证相关
- export * from './handlers/auth';
- // 资源配置相关
- export * from './handlers/resource';
- // 协议相关
- export * from './handlers/protocol';
- // 检查信息管理相关
- export * from './handlers/study';
- // 图像相关
- export * from './handlers/image';
- // 报告相关
- export * from './handlers/report';
- // 设备相关
- export * from './handlers/device';
- // 检查执行相关
- export * from './handlers/exam';
- // 配额相关(已有)
- export * from './handlers/quota';
|