2025-12-18 18:12:20 +09:00
|
|
|
import { Module } from "@nestjs/common";
|
|
|
|
|
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";
|
2025-12-18 18:12:20 +09:00
|
|
|
|
|
|
|
|
@Module({
|
2025-12-19 15:15:36 +09:00
|
|
|
imports: [IntegrationsModule, MappingsModule, CoreConfigModule],
|
2025-12-18 18:12:20 +09:00
|
|
|
controllers: [ResidenceCardController],
|
|
|
|
|
providers: [ResidenceCardService],
|
|
|
|
|
exports: [ResidenceCardService],
|
|
|
|
|
})
|
|
|
|
|
export class VerificationModule {}
|