chore: Install project dependencies.
Some checks failed
Build and Deploy / build-and-deploy (push) Has been cancelled

This commit is contained in:
gitmuhammedalbayrak
2025-11-24 02:59:20 +03:00
parent a27dd3c675
commit ff7bd34355
27 changed files with 13310 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { Project } from './project.entity';
import { ProjectsService } from './projects.service';
import { ProjectsController } from './projects.controller';
@Module({
imports: [TypeOrmModule.forFeature([Project])],
providers: [ProjectsService],
controllers: [ProjectsController],
exports: [ProjectsService],
})
export class ProjectsModule { }