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