카드 매입 승인 경로 Spring Boot 3 전환 #1

Closed
forge-bot wants to merge 8 commits from forge/ACX-E2E-1785394564819-attempt-1-run-d41f8df477e9 into main
Showing only changes of commit c9483167fc - Show all commits

View file

@ -0,0 +1,12 @@
package com.acquirex;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class AcquirexApplication {
public static void main(String[] args) {
SpringApplication.run(AcquirexApplication.class, args);
}
}