Compare commits

...

2 Commits

Author SHA1 Message Date
1721b426fd test
All checks were successful
Gradle Build on PR / call-gradle-build (pull_request) Successful in 2m53s
2025-09-15 18:06:47 +02:00
272d38f598 setup
Some checks failed
Publish Snapshot / call-publish (push) Has been cancelled
2025-09-15 18:05:46 +02:00
3 changed files with 16 additions and 2 deletions

View File

@@ -22,4 +22,4 @@ dependencies {
}
group = "ltd.lulz"
description = "service template"
description = "device data service"

View File

@@ -34,4 +34,4 @@ pluginManagement.repositories {
gradlePluginPortal()
}
rootProject.name = "service"
rootProject.name = "device-data"

View File

@@ -0,0 +1,14 @@
package ltd.lulz.controller
import org.springframework.web.bind.annotation.GetMapping
import org.springframework.web.bind.annotation.RequestMapping
import org.springframework.web.bind.annotation.RestController
import reactor.core.publisher.Mono
@RestController
@RequestMapping("/")
class HomeController {
@GetMapping
fun home(): Mono<String> = Mono.just("Hello World")
}