12 lines
392 B
TypeScript
12 lines
392 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: [],
|
||
|
|
})
|
||
|
|
export class CurrencyModule {}
|