1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package de.micromata.borgbutler.server
|
| import mu.KotlinLogging
| import org.springframework.stereotype.Controller
| import org.springframework.web.bind.annotation.RequestMapping
|
| private val log = KotlinLogging.logger {}
|
| @Controller
| open class WebConntroller {
| @RequestMapping("/")
| fun index(): String {
| return "index"
| }
| }
|
|