refactor: Rename payment module to axhub-tool-payment

This commit is contained in:
jade
2026-07-09 22:02:57 +09:00
parent 654c61edc5
commit 4919ae936e
7 changed files with 9 additions and 9 deletions

View File

@@ -0,0 +1,13 @@
package io.shinhanlife.axhub.biz.mcp.tool.payment;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;
@EnableCaching
@SpringBootApplication(scanBasePackages = "io.shinhanlife.axhub.biz.mcp")
public class PaymentToolApplication {
public static void main(String[] args) {
SpringApplication.run(PaymentToolApplication.class, args);
}
}

View File

@@ -0,0 +1,12 @@
spring:
application:
name: axhub-tool-payment
config:
import: "classpath:config/application-glow-local.yml"
server:
port: 8085
axhub:
tool:
url: "http://tool-payment:8085"