- 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.
13 lines
447 B
TypeScript
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 {}
|