test
All checks were successful
Gradle Build on PR / call-gradle-build (pull_request) Successful in 3m3s
Publish Snapshot / call-publish (push) Successful in 3m45s

This commit was merged in pull request #3.
This commit is contained in:
2025-09-15 17:52:59 +02:00
parent bab33b131a
commit aa32d52111

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")
}