2026-05-09 18:25:04 +08:00
|
|
|
import { Module } from '@nestjs/common';
|
|
|
|
|
import { LearningSessionController } from './learning-session.controller';
|
2026-05-24 17:45:43 +08:00
|
|
|
import { AdminLearningController } from './admin-learning.controller';
|
2026-05-09 18:25:04 +08:00
|
|
|
import { LearningSessionService } from './learning-session.service';
|
|
|
|
|
import { LearningSessionRepository } from './learning-session.repository';
|
|
|
|
|
|
|
|
|
|
@Module({
|
2026-05-24 17:45:43 +08:00
|
|
|
controllers: [LearningSessionController, AdminLearningController],
|
2026-05-09 18:25:04 +08:00
|
|
|
providers: [LearningSessionService, LearningSessionRepository],
|
|
|
|
|
exports: [LearningSessionService],
|
|
|
|
|
})
|
|
|
|
|
export class LearningSessionModule {}
|