Files
api-AT/src/alumno/student.module.ts
T

19 lines
650 B
TypeScript
Raw Normal View History

2026-02-19 15:24:53 -06:00
import { forwardRef, Module } from '@nestjs/common';
2025-09-17 16:35:52 -06:00
import { AlumnoService } from './student.service';
2025-09-18 21:08:19 -06:00
import { AlumnoController } from './student.controller';
2025-09-14 17:51:17 -06:00
import { TypeOrmModule } from '@nestjs/typeorm';
2025-09-26 17:43:19 -06:00
import { Alumno } from './entities/student.entity';
import { Carrera } from 'src/carrera/entities/carrera.entity';
2026-02-19 15:24:53 -06:00
import { AlumnoSancionModule } from 'src/alumno_sancion/alumno_sancion.module';
@Module({
2026-02-19 15:24:53 -06:00
imports: [TypeOrmModule.forFeature([Alumno, Carrera]),
forwardRef(() => AlumnoSancionModule),
],
2025-09-18 21:08:19 -06:00
controllers: [AlumnoController],
2025-09-17 16:35:52 -06:00
providers: [AlumnoService],
2025-09-26 17:43:19 -06:00
exports: [AlumnoService],
})
2026-02-19 15:24:53 -06:00
export class AlumnoModule { }
2025-09-26 17:43:19 -06:00
//IO