前端重构实现

This commit is contained in:
2025-12-22 16:38:06 +08:00
parent cd6d995d5a
commit 26574e3db7
54 changed files with 8976 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
/**
* 服务层统一导出
*/
export { default as api } from './api';
export { default as authService } from './auth';
export { default as userProfileService } from './userProfile';
export { default as lifeEventService } from './lifeEvent';
export { default as epicScriptService } from './epicScript';
export { default as lifePathService } from './lifePath';
export { default as aiService } from './ai';
// 导出各服务的具体方法
export * from './auth';
export * from './userProfile';
export * from './lifeEvent';
export * from './epicScript';
export * from './lifePath';
export * from './ai';