feat(session_core): 新增会话核心模块
范围:src/core/session_core/ 涉及文件: - src/core/session_core/index.ts - src/core/session_core/session_core.interfaces.ts - src/core/session_core/session_core.module.ts - src/core/session_core/session_core.module.spec.ts - src/core/session_core/README.md 主要内容: - 定义会话管理抽象接口(ISessionQueryService, ISessionManagerService) - 实现动态模块配置(SessionCoreModule.forFeature) - 添加完整的单元测试覆盖 - 创建功能文档README.md
This commit is contained in:
25
src/core/session_core/index.ts
Normal file
25
src/core/session_core/index.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
/**
|
||||
* 会话核心模块导出
|
||||
*
|
||||
* 功能描述:
|
||||
* - 统一导出会话核心模块的接口和模块定义
|
||||
* - 提供会话管理相关的类型定义和依赖注入Token
|
||||
* - 简化外部模块的导入路径
|
||||
*
|
||||
* 导出内容:
|
||||
* - IPosition, IGameSession, IContextInfo - 数据接口
|
||||
* - ISessionQueryService, ISessionManagerService - 服务接口
|
||||
* - SESSION_QUERY_SERVICE, SESSION_MANAGER_SERVICE - 依赖注入Token
|
||||
* - SessionCoreModule - 核心模块
|
||||
*
|
||||
* 最近修改:
|
||||
* - 2026-01-14: 代码规范优化 - 完善文件头注释 (修改者: moyin)
|
||||
*
|
||||
* @author moyin
|
||||
* @version 1.0.1
|
||||
* @since 2026-01-14
|
||||
* @lastModified 2026-01-14
|
||||
*/
|
||||
|
||||
export * from './session_core.interfaces';
|
||||
export * from './session_core.module';
|
||||
Reference in New Issue
Block a user