Se agregaron las dependencias

This commit is contained in:
santiago
2025-09-25 20:13:26 +02:00
parent 6926e84df3
commit 25872c544f
+2 -2
View File
@@ -6,10 +6,10 @@ import { TypeOrmModule } from '@nestjs/typeorm';
import { Qr } from './qr.entity';
import { AuthModule } from '../auth/auth.module';
import { ConfigModule } from '@nestjs/config';
import { ParticipanteEvento } from 'src/participante_evento/entities/participante_evento.entity';
import { Asistencia } from 'src/asistencia/entities/asistencia.entity';
@Module({
imports: [TypeOrmModule.forFeature([Qr]), AuthModule, ConfigModule, ParticipanteEvento],
imports: [TypeOrmModule.forFeature([Qr]), AuthModule, ConfigModule, Asistencia],
controllers: [QrController],
providers: [QrService, QrTokenService],
exports: [QrTokenService],