前端重构实现
This commit is contained in:
@@ -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';
|
||||
Reference in New Issue
Block a user