Developer 역할 Spring 골격 smoke #12

Open
forge-bot wants to merge 7 commits from forge/role-developer-live-v2-001-attempt-1-run-53f9c6cb3b6d into main
Showing only changes of commit 50a3e357ed - Show all commits

View file

@ -0,0 +1,12 @@
package com.example.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);
}
}