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

@@ -13,6 +13,7 @@ import { CustomersController } from './Customers.controller';
import { CustomersApplication } from './CustomersApplication.service';
import { DeleteCustomer } from './commands/DeleteCustomer.service';
import { CustomersExportable } from './CustomersExportable';
import { CustomersImportable } from './CustomersImportable';
@Module({
imports: [TenancyDatabaseModule],
@@ -31,7 +32,8 @@ import { CustomersExportable } from './CustomersExportable';
TenancyContext,
TransformerInjectable,
GetCustomerService,
CustomersExportable
CustomersExportable,
CustomersImportable
],
})
export class CustomersModule {}