import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { ShopItemSubCategory } from './shopitemsubcategory.entity';
import { ShopitemsubcategoryService } from './shopitemsubcategory.service';
import { ShopItemSubCategoryController } from './shopitemsubcategory.controller';

@Module({
  imports: [TypeOrmModule.forFeature([ShopItemSubCategory])],
  providers: [ShopitemsubcategoryService],
  controllers: [ShopItemSubCategoryController],
  exports: [ShopitemsubcategoryModule, ShopitemsubcategoryService],
})
export class ShopitemsubcategoryModule {}
