2026-01-05 15:11:56 +09:00
|
|
|
import { Module, forwardRef } from "@nestjs/common";
|
2025-12-18 18:12:20 +09:00
|
|
|
import { ResidenceCardController } from "./residence-card.controller.js";
|
|
|
|
|
import { ResidenceCardService } from "./residence-card.service.js";
|
2025-12-19 15:15:36 +09:00
|
|
|
import { IntegrationsModule } from "@bff/integrations/integrations.module.js";
|
|
|
|
|
import { MappingsModule } from "@bff/modules/id-mappings/mappings.module.js";
|
|
|
|
|
import { CoreConfigModule } from "@bff/core/config/config.module.js";
|
2026-01-05 15:11:56 +09:00
|
|
|
import { ServicesModule } from "@bff/modules/services/services.module.js";
|
2026-01-15 18:15:51 +09:00
|
|
|
import { WorkflowModule } from "@bff/modules/shared/workflow/index.js";
|
2025-12-18 18:12:20 +09:00
|
|
|
|
|
|
|
|
@Module({
|
2026-01-15 18:15:51 +09:00
|
|
|
imports: [
|
|
|
|
|
IntegrationsModule,
|
|
|
|
|
MappingsModule,
|
|
|
|
|
CoreConfigModule,
|
|
|
|
|
forwardRef(() => ServicesModule),
|
|
|
|
|
WorkflowModule,
|
|
|
|
|
],
|
2025-12-18 18:12:20 +09:00
|
|
|
controllers: [ResidenceCardController],
|
|
|
|
|
providers: [ResidenceCardService],
|
|
|
|
|
exports: [ResidenceCardService],
|
|
|
|
|
})
|
|
|
|
|
export class VerificationModule {}
|