14 lines
577 B
TypeScript
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 {}
|