refactor:重构核心模块架构

- 重构用户管理服务,优化内存服务实现
- 简化zulip_core模块结构,移除冗余配置和接口
- 更新用户状态枚举和实体定义
- 优化登录核心服务的测试覆盖
This commit is contained in:
moyin
2026-01-08 23:04:49 +08:00
parent 569a69c00e
commit c2a1c6862d
43 changed files with 8978 additions and 182 deletions

View File

@@ -11,16 +11,26 @@
* - 实现导出层:导出具体实现类供内部使用
*
* 最近修改:
* - 2026-01-08: 文件夹扁平化 - 更新导入路径移除interfaces/子文件夹 (修改者: moyin)
* - 2026-01-07: 代码规范优化 - 更新import路径和注释规范
*
* @author moyin
* @version 1.0.1
* @version 1.0.3
* @since 2025-12-31
* @lastModified 2026-01-07
* @lastModified 2026-01-08
*/
// 导出配置相关
export * from './zulip.config';
// 导出常量定义
export * from './zulip_core.constants';
// 导出核心服务接口
export * from './interfaces/zulip_core.interfaces';
export * from './zulip_core.interfaces';
// 导出Zulip集成接口
export * from './zulip.interfaces';
// 导出核心服务模块
export { ZulipCoreModule } from './zulip_core.module';