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],