Assist_Design/apps/bff/src/modules/currency/currency.module.ts
barsa e5ce4e166c Refactor mappers and services for improved type safety and code clarity
- Updated export statements in user and mapping mappers for consistency.
- Enhanced FreebitAuthService to explicitly define response types for better type inference.
- Refactored various services to improve error handling and response structure.
- Cleaned up unused code and comments across multiple files to enhance readability.
- Improved type annotations in invoice and subscription services for better validation and consistency.
2025-10-22 10:58:16 +09:00

13 lines
447 B
TypeScript

import { Module } from "@nestjs/common";
import { CurrencyController } from "./currency.controller";
import { WhmcsCurrencyService } from "../../integrations/whmcs/services/whmcs-currency.service";
import { WhmcsModule } from "../../integrations/whmcs/whmcs.module";
@Module({
imports: [WhmcsModule],
controllers: [CurrencyController],
providers: [WhmcsCurrencyService],
exports: [WhmcsCurrencyService],
})
export class CurrencyModule {}