mirror of
https://github.com/suyiiyii/SIMS.git
synced 2026-06-23 05:48:22 +08:00
feat(SIMS): init
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package top.suyiiyii.sims;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class SimsApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(SimsApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
spring.application.name=SIMS
|
||||
@@ -0,0 +1,13 @@
|
||||
package top.suyiiyii.sims;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
@SpringBootTest
|
||||
class SimsApplicationTests {
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user