refactor: move AxhubMciComponent and GlowMockConfig to core module for common usage

This commit is contained in:
jade
2026-07-21 17:07:02 +09:00
parent 334af3e40e
commit c90654bd1b
3 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
package io.shinhanlife.dap.mcc.component; package io.shinhanlife.dap.common.integration.mci.component;
import io.shinhanlife.glow.communication.dto.Transfer; import io.shinhanlife.glow.communication.dto.Transfer;
import io.shinhanlife.glow.communication.module.mci.component.GlowMciComponent; import io.shinhanlife.glow.communication.module.mci.component.GlowMciComponent;

View File

@@ -1,4 +1,4 @@
package io.shinhanlife.dap.mcc.component; package io.shinhanlife.dap.common.integration.mci.config;
import io.shinhanlife.glow.communication.module.mci.component.GlowMciComponent; import io.shinhanlife.glow.communication.module.mci.component.GlowMciComponent;
import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Bean;

View File

@@ -1,6 +1,6 @@
package io.shinhanlife.dap.mcc.service; package io.shinhanlife.dap.mcc.service;
import io.shinhanlife.dap.mcc.component.AxhubMciComponent; import io.shinhanlife.dap.common.integration.mci.component.AxhubMciComponent;
import io.shinhanlife.glow.communication.dto.Transfer; import io.shinhanlife.glow.communication.dto.Transfer;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import io.shinhanlife.dap.mcc.annotation.McpFunction; import io.shinhanlife.dap.mcc.annotation.McpFunction;