api-server/src/modules/learning-record/learning-record.module.ts
wangdl 22ed18404f
All checks were successful
Deploy API Server / build-and-deploy (push) Successful in 43s
fix: import paths + dead code cleanup + export ProcessResult
- Fix PrismaService/PrismaModule import paths (infrastructure/database/)
- Remove dead upsertFromReadingEvent wrappers in learning-activity/learning-session services
- Export ProcessResult interface for controller return type

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-08 21:12:36 +08:00

11 lines
336 B
TypeScript

import { Module } from '@nestjs/common';
import { PrismaModule } from '../../infrastructure/database/prisma.module';
import { LearningRecordService } from './learning-record.service';
@Module({
imports: [PrismaModule],
providers: [LearningRecordService],
exports: [LearningRecordService],
})
export class LearningRecordModule {}