- Removed deprecated files and components from the BFF application, including various auth and catalog services, enhancing code clarity. - Updated package.json scripts for better organization and streamlined development processes. - Refactored portal components to improve structure and maintainability, including the removal of unused files and components. - Enhanced type definitions and imports across the application for consistency and clarity.
13 lines
454 B
TypeScript
13 lines
454 B
TypeScript
import { Module } from "@nestjs/common";
|
|
import { InvoicesController } from "./invoices.controller";
|
|
import { InvoicesService } from "./invoices.service";
|
|
import { WhmcsModule } from "@bff/integrations/whmcs/whmcs.module";
|
|
import { MappingsModule } from "@bff/modules/id-mappings/mappings.module";
|
|
|
|
@Module({
|
|
imports: [WhmcsModule, MappingsModule],
|
|
controllers: [InvoicesController],
|
|
providers: [InvoicesService],
|
|
})
|
|
export class InvoicesModule {}
|