@@ -0,0 +1,13 @@
|
||||
package dev.mars3142.fhq.google_services;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class Application {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(Application.class, args);
|
||||
}
|
||||
|
||||
}
|
0
src/main/resources/application-dev.yaml
Normal file
0
src/main/resources/application-dev.yaml
Normal file
3
src/main/resources/application.yaml
Normal file
3
src/main/resources/application.yaml
Normal file
@@ -0,0 +1,3 @@
|
||||
spring:
|
||||
application:
|
||||
name: google-service
|
8
src/main/resources/banner.txt
Normal file
8
src/main/resources/banner.txt
Normal file
@@ -0,0 +1,8 @@
|
||||
,----. ,--.
|
||||
' .-./ ,---. ,---. ,---. | |,---.
|
||||
| | .---.| .-. | .-. | .-. || | .-. :
|
||||
' '--' |' '-' ' '-' ' '-' '| \ --.
|
||||
`------' `---' `---'.`- / `--'`----'
|
||||
`---'
|
||||
${application.title} ${application.version}
|
||||
Powered by Spring Boot ${spring-boot.version}
|
@@ -0,0 +1,13 @@
|
||||
package dev.mars3142.fhq.google_services;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
@SpringBootTest
|
||||
class ApplicationTests {
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user