working on payment

This commit is contained in:
Tria
2026-06-04 16:18:14 +03:00
parent 6b82b11757
commit 93020b3153
10 changed files with 664 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import { Module } from "@nestjs/common";
import { PaymentTelebirrStrategy } from "./strategies/payment.telebirr.strategy";
import { PaymentService } from "./payment.service";
import { HttpModule } from "@nestjs/axios";
import { PaymentController } from "./payment.controller";
@Module({
imports: [HttpModule,],
providers: [PaymentTelebirrStrategy, PaymentService],
controllers: [PaymentController]
})
export class PaymentModule { }