[added] - inversify for inversion of control (IoC) container

This commit is contained in:
Swapnil Bendal
2024-12-18 13:17:41 +05:30
parent ca2831cf23
commit f67cfc4ef7
12 changed files with 100 additions and 11 deletions

View File

@@ -0,0 +1,3 @@
export interface IMessageBroker {
NotifyToPromotionService(product: unknown): Promise<boolean>;
}