All checks were successful
Deploy API Server / build-and-deploy (push) Successful in 43s
- 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>
11 lines
336 B
TypeScript
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 {}
|