10 lines
262 B
TypeScript
10 lines
262 B
TypeScript
|
|
import { Module } from '@nestjs/common';
|
||
|
|
import { StudentService } from './student.service';
|
||
|
|
import { StudentController } from './student.controller';
|
||
|
|
|
||
|
|
@Module({
|
||
|
|
controllers: [StudentController],
|
||
|
|
providers: [StudentService],
|
||
|
|
})
|
||
|
|
export class StudentModule {}
|