Subir carpetas con las nuevas tablas
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { EventoService } from './evento.service';
|
||||
import { EventoController } from './evento.controller';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { Evento } from './evento.entity';
|
||||
|
||||
@Module({
|
||||
imports: [TypeOrmModule.forFeature([Evento])],
|
||||
controllers: [EventoController],
|
||||
providers: [EventoService]
|
||||
})
|
||||
export class EventoModule {}
|
||||
Reference in New Issue
Block a user