mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-27 00:52:50 +00:00
working on payment
This commit is contained in:
12
apps/edr-freight-api/src/modules/payment/payment.module.ts
Normal file
12
apps/edr-freight-api/src/modules/payment/payment.module.ts
Normal 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 { }
|
||||
Reference in New Issue
Block a user