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