mirror of
https://github.com/RoastSlav/quickdrop.git
synced 2026-05-04 03:19:25 -05:00
Initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package org.rostislav.quickdrop;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class QuickdropApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(QuickdropApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
spring.application.name=quickdrop
|
||||
@@ -0,0 +1,13 @@
|
||||
package org.rostislav.quickdrop;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
@SpringBootTest
|
||||
class QuickdropApplicationTests {
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user