Developer 역할 Spring 골격 smoke #4

Merged
forge-bot merged 5 commits from forge/role-developer-live-v5-001-attempt-1-run-d2eb89f97872 into main 2026-07-14 09:28:41 +00:00
Showing only changes of commit e73f57558d - Show all commits

View file

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