From 25872c544feef1d7889660d0f89b7386a866fb25 Mon Sep 17 00:00:00 2001 From: santiago Date: Thu, 25 Sep 2025 20:13:26 +0200 Subject: [PATCH] Se agregaron las dependencias --- src/qr/qr.module.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qr/qr.module.ts b/src/qr/qr.module.ts index 1bfdb76..4865dd4 100644 --- a/src/qr/qr.module.ts +++ b/src/qr/qr.module.ts @@ -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],