forked from CIDWA/cedetec_api_nest
14 lines
483 B
TypeScript
14 lines
483 B
TypeScript
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 {}
|