mirror of https://github.com/micromata/borgbackup-butler.git

Kai Reinhard
17.56.2021 812f12a69468d5b20fef7afc6cd82c130481e9ad
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"
    }
}