2025-08-21 15:24:40 +09:00
|
|
|
import { Module } from "@nestjs/common";
|
|
|
|
|
import { UsersService } from "./users.service";
|
|
|
|
|
import { UsersController } from "./users.controller";
|
2025-09-17 18:43:43 +09:00
|
|
|
import { WhmcsModule } from "@bff/integrations/whmcs/whmcs.module";
|
|
|
|
|
import { SalesforceModule } from "@bff/integrations/salesforce/salesforce.module";
|
|
|
|
|
import { MappingsModule } from "@bff/modules/id-mappings/mappings.module";
|
|
|
|
|
import { PrismaModule } from "@bff/infra/database/prisma.module";
|
2025-08-20 18:02:50 +09:00
|
|
|
|
|
|
|
|
@Module({
|
2025-08-21 15:24:40 +09:00
|
|
|
imports: [PrismaModule, WhmcsModule, SalesforceModule, MappingsModule],
|
2025-08-20 18:02:50 +09:00
|
|
|
controllers: [UsersController],
|
|
|
|
|
providers: [UsersService],
|
|
|
|
|
exports: [UsersService],
|
|
|
|
|
})
|
|
|
|
|
export class UsersModule {}
|