First Commit

This commit is contained in:
Gyubin-Han
2025-05-27 13:09:52 +09:00
commit bbb41725a8
8 changed files with 658 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package be.gyu.urlShortener;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class UrlShortenerApplication {
public static void main(String[] args) {
SpringApplication.run(UrlShortenerApplication.class, args);
}
}

View File

@@ -0,0 +1,3 @@
spring.application.name=urlShortener
server.port=10010

View File

@@ -0,0 +1,13 @@
package be.gyu.urlShortener;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class UrlShortenerApplicationTests {
@Test
void contextLoads() {
}
}