Creacion de entities
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { StudentService } from './student.service';
|
||||
import { StudentController } from './student.controller';
|
||||
|
||||
@Module({
|
||||
controllers: [StudentController],
|
||||
providers: [StudentService],
|
||||
})
|
||||
export class StudentModule {}
|
||||
Reference in New Issue
Block a user