import { Module } from "@nestjs/common"; import { BillingController } from "./billing.controller"; import { BillingService } from "./billing.service"; @Module({ controllers: [BillingController], providers: [BillingService], // The statements module posts confirmed OCR captures through // BillingService.createBatch rather than writing Transaction rows itself. exports: [BillingService], }) export class BillingModule {}