AnhLedger's picture
create payment url
f4866cb
raw
history blame
268 Bytes
import { Module } from '@nestjs/common';
import { PaymentService } from './payment.service.js';
import { PaymentController } from './payment.controller.js';
@Module({
controllers: [PaymentController],
providers: [PaymentService],
})
export class PaymentModule {}