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

13 lines
414 B
TypeScript
Raw Normal View History

import { Module } from '@nestjs/common';
import { StudentService } from './student.service';
import { StudentController } from './student.controller';
2025-09-14 17:51:17 -06:00
import { TypeOrmModule } from '@nestjs/typeorm';
import { Student } from './entities/student.entity';
@Module({
2025-09-14 17:51:17 -06:00
imports: [TypeOrmModule.forFeature([Student])],
controllers: [StudentController],
providers: [StudentService],
})
export class StudentModule {}