mirror of
https://github.com/FatttSnake/Pinnacle-OA.git
synced 2026-04-05 15:01:23 +08:00
Init
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package com.cfive.pinnacle;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class PinnacleApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(PinnacleApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
1
Pinnacle/src/main/resources/application.properties
Normal file
1
Pinnacle/src/main/resources/application.properties
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.cfive.pinnacle;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
@SpringBootTest
|
||||
class PinnacleApplicationTests {
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user