2026-03-07 11:25:11 +03:30
|
|
|
import { PrismaModule } from '@/prisma/prisma.module'
|
|
|
|
|
import { Module } from '@nestjs/common'
|
|
|
|
|
|
2026-04-16 22:19:20 +03:30
|
|
|
import { AdminPartnerActivatedLicensesModule } from './activatedLicenses/activatedLicenses.module'
|
2026-04-23 20:59:39 +03:30
|
|
|
import { PartnerAccountChargeTransactionModule } from './chargeAccountQoutaTransactions/chargeAccountQuotaTransactions.module'
|
|
|
|
|
import { AdminPartnerLicenseChargeTransactionModule } from './chargedLicenseTransactions/chargedLicenseTransactions.module'
|
2026-03-07 11:25:11 +03:30
|
|
|
import { AdminPartnerAccountsModule } from './partnerAccounts/accounts.module'
|
|
|
|
|
import { PartnersController } from './partners.controller'
|
|
|
|
|
import { PartnersService } from './partners.service'
|
|
|
|
|
|
|
|
|
|
@Module({
|
2026-04-16 22:19:20 +03:30
|
|
|
imports: [
|
|
|
|
|
PrismaModule,
|
2026-04-23 20:59:39 +03:30
|
|
|
AdminPartnerLicenseChargeTransactionModule,
|
2026-04-16 22:19:20 +03:30
|
|
|
AdminPartnerActivatedLicensesModule,
|
2026-04-24 23:02:05 +03:30
|
|
|
// AdminPartnerAllocatedAccountsModule,
|
2026-04-23 20:59:39 +03:30
|
|
|
PartnerAccountChargeTransactionModule,
|
2026-04-16 22:19:20 +03:30
|
|
|
AdminPartnerAccountsModule,
|
|
|
|
|
],
|
2026-03-07 11:25:11 +03:30
|
|
|
controllers: [PartnersController],
|
|
|
|
|
providers: [PartnersService],
|
|
|
|
|
exports: [PartnersService],
|
|
|
|
|
})
|
|
|
|
|
export class AdminPartnersModule {}
|