Assist_Design/apps/bff/src/modules/currency/currency.module.ts

13 lines
447 B
TypeScript
Raw Normal View History

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