refactor(nestjs): import module

This commit is contained in:
Ahmed Bouhuolia
2025-04-12 08:38:29 +02:00
parent 1bcee9293c
commit 5bfff51093
18 changed files with 271 additions and 139 deletions

View File

@@ -17,6 +17,7 @@ import { GetItemsService } from './GetItems.service';
import { DynamicListModule } from '../DynamicListing/DynamicList.module';
import { InventoryAdjustmentsModule } from '../InventoryAdjutments/InventoryAdjustments.module';
import { ItemsExportable } from './ItemsExportable.service';
import { ItemsImportable } from './ItemsImportable.service';
@Module({
imports: [
@@ -40,7 +41,8 @@ import { ItemsExportable } from './ItemsExportable.service';
TransformerInjectable,
ItemsEntriesService,
ItemsExportable,
ItemsImportable
],
exports: [ItemsEntriesService, ItemsExportable],
exports: [ItemsEntriesService, ItemsExportable, ItemsImportable],
})
export class ItemsModule {}