15 lines
438 B
TypeScript
15 lines
438 B
TypeScript
|
|
import { Module } from '@nestjs/common';
|
||
|
|
import { ExcelService } from './excel.service';
|
||
|
|
import { ExcelController } from './excel.controller';
|
||
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
||
|
|
import { Usuario, Genero, Carrera } from '../entities/entities';
|
||
|
|
|
||
|
|
@Module({
|
||
|
|
imports: [
|
||
|
|
TypeOrmModule.forFeature([Usuario, Genero, Carrera]),
|
||
|
|
],
|
||
|
|
providers: [ExcelService],
|
||
|
|
controllers: [ExcelController],
|
||
|
|
})
|
||
|
|
export class ExcelModule {}
|