✨ pom
parent
27f9b99e4c
commit
546065f9d3
@ -1,8 +1,16 @@
|
||||
package org.alis.amu.starter;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
/**
|
||||
* @author robin
|
||||
* @date 2022/1/25 14:57
|
||||
*/
|
||||
@SpringBootApplication
|
||||
public class AmuStarterApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(AmuStarterApplication.class);
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1 @@
|
||||
|
@ -0,0 +1,13 @@
|
||||
package org.alis.amu.starter.alisamustarter;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
@SpringBootTest
|
||||
class AlisAmuStarterApplicationTests {
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue