refactor(nestjs): exportable modules

This commit is contained in:
Ahmed Bouhuolia
2025-04-08 22:44:24 +02:00
parent 04c25bd31a
commit e8f1fedf35
21 changed files with 408 additions and 408 deletions

View File

@@ -15,6 +15,7 @@ import { VendorsController } from './Vendors.controller';
import { GetVendorsService } from './queries/GetVendors.service';
import { DynamicListModule } from '../DynamicListing/DynamicList.module';
import { VendorsExportable } from './VendorsExportable';
import { VendorsImportable } from './VendorsImportable';
@Module({
imports: [TenancyDatabaseModule, DynamicListModule],
@@ -32,7 +33,8 @@ import { VendorsExportable } from './VendorsExportable';
VendorsApplication,
TransformerInjectable,
TenancyContext,
VendorsExportable
VendorsExportable,
VendorsImportable
],
})
export class VendorsModule {}