Refactor code structure for improved readability and maintainability
This commit is contained in:
11
src/project/project.module.ts
Normal file
11
src/project/project.module.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import { Module } from "@nestjs/common";
|
||||
import { TypeOrmModule } from "@nestjs/typeorm";
|
||||
import { Project } from "./entities/project.entity";
|
||||
import { ProjectService } from "./project.service";
|
||||
|
||||
@Module({
|
||||
imports: [TypeOrmModule.forFeature([Project])],
|
||||
controllers: [],
|
||||
providers: [ProjectService],
|
||||
})
|
||||
export class ProjectModule {}
|
||||
Reference in New Issue
Block a user