test
All checks were successful
Gradle Build on PR / call-gradle-build (pull_request) Successful in 2m51s

This commit is contained in:
2025-09-15 17:52:59 +02:00
parent c135fc90d0
commit de3e93cc0a

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