refactor: banking services to Nestjs

This commit is contained in:
Ahmed Bouhuolia
2025-01-05 16:26:23 +02:00
parent b72f85b394
commit 1869ba216f
150 changed files with 9698 additions and 163 deletions

View File

@@ -0,0 +1,20 @@
import { Module } from "@nestjs/common";
import { PlaidUpdateTransactionsOnItemCreatedSubscriber } from "./subscribers/PlaidUpdateTransactionsOnItemCreatedSubscriber";
import { PlaidUpdateTransactions } from "./command/PlaidUpdateTransactions";
import { PlaidSyncDb } from "./command/PlaidSyncDB";
import { PlaidWebooks } from "./command/PlaidWebhooks";
import { PlaidLinkTokenService } from "./queries/GetPlaidLinkToken.service";
import { PlaidApplication } from "./PlaidApplication";
@Module({
providers: [
PlaidUpdateTransactions,
PlaidSyncDb,
PlaidWebooks,
PlaidLinkTokenService,
PlaidApplication,
PlaidUpdateTransactionsOnItemCreatedSubscriber,
],
})
export class BankingPlaidModule {}