Developer 역할 Spring 골격 smoke #4

Merged
forge-bot merged 9 commits from forge/role-developer-live-1522-001-attempt-1-run-6a48084c658b into main 2026-07-14 06:33:09 +00:00
Showing only changes of commit 7b68f7787f - 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);
}
}