first commit

This commit is contained in:
2025-04-20 05:49:21 +02:00
commit e012b0507c
11 changed files with 458 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package ltd.hlaeja
import org.springframework.boot.autoconfigure.SpringBootApplication
import org.springframework.boot.runApplication
@SpringBootApplication
class HlaejaServiceApplication
fun main(args: Array<String>) {
runApplication<HlaejaServiceApplication>(*args)
}

View File

@@ -0,0 +1 @@
spring.application.name=hlaeja-service

View File

@@ -0,0 +1,13 @@
package ltd.hlaeja
import org.junit.jupiter.api.Test
import org.springframework.boot.test.context.SpringBootTest
@SpringBootTest
class HlaejaServiceApplicationTests {
@Test
fun contextLoads() {
}
}