Some checks failed
Deploy API Server / build-and-deploy (push) Failing after 11s
Phase 1-2: 设计文档 + 数据库 (ReadingEvent/MaterialReadingProgress/TemporaryReadingMaterial/LearningSession扩展/DailyLearningActivity扩展/LearningRecord) Phase 3: 批量上报 + 校验去重 + ReadingEventProcessorService Phase 4: 4表聚合管线 (LearningSession/MaterialReadingProgress/DailyLearningActivity/LearningRecord) Phase 5: 查询接口 (progress/continue/summary/trend/heatmap/history/reprocess) Phase 6: 权限校验 + session中断清理 + API文档 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
11 lines
378 B
TypeScript
11 lines
378 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { PrismaModule } from '../../infrastructure/prisma.module';
|
|
import { TemporaryReadingMaterialService } from './temporary-reading-material.service';
|
|
|
|
@Module({
|
|
imports: [PrismaModule],
|
|
providers: [TemporaryReadingMaterialService],
|
|
exports: [TemporaryReadingMaterialService],
|
|
})
|
|
export class TemporaryReadingMaterialModule {}
|