import { Module } from '@nestjs/common'; import { TypeOrmModule } from '@nestjs/typeorm'; import { EventosModule } from 'src/eventos/eventos.module'; import { Participante } from 'src/participante/participante.entity'; import { EmailController } from './email.controller'; import { EmailService } from './email.service'; @Module({ imports:[TypeOrmModule.forFeature([Participante])], controllers:[EmailController], providers:[EmailService] }) export class EmailModule {}