- Adjusted TypeScript settings in tsconfig files for better alignment with ESNext standards. - Updated pnpm-lock.yaml to reflect dependency changes and improve package management. - Cleaned up Dockerfiles for both BFF and Portal applications to enhance build processes. - Modified import statements across various modules to include file extensions for consistency. - Removed outdated SHA256 files for backend and frontend tarballs to streamline project structure. - Enhanced health check mechanisms in Dockerfiles for improved application startup reliability.
13 lines
456 B
TypeScript
13 lines
456 B
TypeScript
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 {}
|