2025-04-01 15:07:11 -06:00
|
|
|
import { Module } from '@nestjs/common';
|
|
|
|
|
import { EventoService } from './evento.service';
|
|
|
|
|
import { EventoController } from './evento.controller';
|
|
|
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
2025-06-13 22:41:20 -06:00
|
|
|
import { Evento } from './entities/evento.entity';
|
2025-04-01 15:07:11 -06:00
|
|
|
|
|
|
|
|
@Module({
|
|
|
|
|
imports: [TypeOrmModule.forFeature([Evento])],
|
|
|
|
|
controllers: [EventoController],
|
2025-04-02 09:15:14 -06:00
|
|
|
providers: [EventoService],
|
|
|
|
|
exports: [EventoService]
|
2025-04-01 15:07:11 -06:00
|
|
|
})
|
|
|
|
|
export class EventoModule {}
|