From 1721b426fdbc8da4be27a744956d86ac34cca9a0 Mon Sep 17 00:00:00 2001 From: Swordsteel Date: Mon, 15 Sep 2025 17:52:59 +0200 Subject: [PATCH] test --- .../kotlin/ltd/lulz/controller/HomeController.kt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/main/kotlin/ltd/lulz/controller/HomeController.kt diff --git a/src/main/kotlin/ltd/lulz/controller/HomeController.kt b/src/main/kotlin/ltd/lulz/controller/HomeController.kt new file mode 100644 index 0000000..eaa3c45 --- /dev/null +++ b/src/main/kotlin/ltd/lulz/controller/HomeController.kt @@ -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 = Mono.just("Hello World") +}