pcpuma_unam_api/src/carrera-programa/carrera-programa.module.ts
2022-03-31 14:33:11 -06:00

11 lines
380 B
TypeScript

import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { CarreraProgramaController } from './carrera-programa.controller';
import { CarreraPrograma } from './carrera-programa.entity';
@Module({
imports: [TypeOrmModule.forFeature([CarreraPrograma])],
controllers: [CarreraProgramaController],
})
export class CarreraProgramaModule {}