Files
formularios_api/src/participante_evento/participante_evento.module.ts
T
2025-04-01 15:07:11 -06:00

14 lines
577 B
TypeScript

import { Module } from '@nestjs/common';
import { ParticipanteEventoService } from './participante_evento.service';
import { ParticipanteEventoController } from './participante_evento.controller';
import { TypeOrmModule } from '@nestjs/typeorm';
import { ParticipanteEvento } from './participante_evento.entity';
import { Evento } from 'src/evento/evento.entity';
@Module({
imports: [TypeOrmModule.forFeature([ParticipanteEvento]), Evento],
controllers: [ParticipanteEventoController],
providers: [ParticipanteEventoService]
})
export class ParticipanteEventoModule {}