import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { ShopItemCategory } from './shopitemcategory.entity';
import { ShopItemCategoryService } from './shopitemcategory.service';
import { ShopItemCategoryController } from './shopitemcategory.controller';

@Module({
  imports: [TypeOrmModule.forFeature([ShopItemCategory])],
  providers: [ShopItemCategoryService],
  controllers: [ShopItemCategoryController],
  exports: [ShopitemcategoryModule, ShopItemCategoryService],
})
export class ShopitemcategoryModule {}
