chore: add industry crud
This commit is contained in:
@@ -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 {}
|
||||
Reference in New Issue
Block a user