Spring 전환 최소 실행 골격 구현 #4

Open
forge-bot wants to merge 6 commits from forge/role-developer-001-attempt-1-run-13e76c4f33b3 into main
Showing only changes of commit 79498b9bfa - Show all commits

View file

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