chore: add industry crud

This commit is contained in:
Mahyargdz
2025-05-11 12:26:26 +03:30
parent 4e563c497d
commit 9a9f640622
25 changed files with 560 additions and 3 deletions
@@ -0,0 +1,14 @@
import { MikroOrmModule } from "@mikro-orm/nestjs";
import { Module } from "@nestjs/common";
import { Industry } from "./entities/industry.entity";
import { IndustriesController } from "./industries.controller";
import { IndustriesService } from "./services/industries.service";
@Module({
imports: [MikroOrmModule.forFeature([Industry])],
controllers: [IndustriesController],
providers: [IndustriesService],
exports: [IndustriesService],
})
export class IndustriesModule {}