Files
lislgosms/api/src/billing/billing.module.ts
T

11 lines
341 B
TypeScript

import { Module } from '@nestjs/common';
import { BillingController, ClientBillingController } from './billing.controller';
import { BillingService } from './billing.service';
@Module({
controllers: [BillingController, ClientBillingController],
providers: [BillingService],
exports: [BillingService],
})
export class BillingModule {}