index.ts 731 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /**
  2. * Cypress Mock Handlers Index
  3. * 统一导出所有 mock handlers
  4. */
  5. // 系统相关
  6. export * from './handlers/system';
  7. // 国际化相关
  8. export * from './handlers/i18n';
  9. // 用户相关
  10. export * from './handlers/user';
  11. // 认证相关
  12. export * from './handlers/auth';
  13. // 资源配置相关
  14. export * from './handlers/resource';
  15. // 协议相关
  16. export * from './handlers/protocol';
  17. // 检查信息管理相关
  18. export * from './handlers/study';
  19. // 图像相关
  20. export * from './handlers/image';
  21. // 报告相关
  22. export * from './handlers/report';
  23. // 设备相关
  24. export * from './handlers/device';
  25. // 检查执行相关
  26. export * from './handlers/exam';
  27. // 配额相关(已有)
  28. export * from './handlers/quota';