32 lines
1.8 KiB
JavaScript
32 lines
1.8 KiB
JavaScript
"use strict";
|
|
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.BillingModule = void 0;
|
|
const common_1 = require("@nestjs/common");
|
|
const typeorm_1 = require("@nestjs/typeorm");
|
|
const subscription_entity_1 = require("./entities/subscription.entity");
|
|
const transaction_entity_1 = require("./entities/transaction.entity");
|
|
const billing_service_1 = require("./billing.service");
|
|
const billing_controller_1 = require("./billing.controller");
|
|
const paymob_provider_1 = require("./providers/paymob.provider");
|
|
const binance_provider_1 = require("./providers/binance.provider");
|
|
const tenant_entity_1 = require("../auth/entities/tenant.entity");
|
|
let BillingModule = class BillingModule {
|
|
};
|
|
exports.BillingModule = BillingModule;
|
|
exports.BillingModule = BillingModule = __decorate([
|
|
(0, common_1.Module)({
|
|
imports: [
|
|
typeorm_1.TypeOrmModule.forFeature([subscription_entity_1.Subscription, transaction_entity_1.Transaction, tenant_entity_1.Tenant]),
|
|
],
|
|
providers: [billing_service_1.BillingService, paymob_provider_1.PayMobProvider, binance_provider_1.BinanceProvider],
|
|
controllers: [billing_controller_1.BillingController],
|
|
exports: [billing_service_1.BillingService],
|
|
})
|
|
], BillingModule);
|
|
//# sourceMappingURL=billing.module.js.map
|