feat(init): 创建 Maven 项目骨架 (T001)

This commit is contained in:
wh
2026-04-09 13:00:30 +08:00
parent 4054a1133b
commit 3b99b1d8c3
3 changed files with 85 additions and 0 deletions

View File

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

View File

@@ -0,0 +1,7 @@
package com.label;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class LabelBackendApplicationTests {
}