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 {}