package tv.anypoint.proxy.web import mu.KLogging import org.springframework.web.bind.annotation.GetMapping import org.springframework.web.bind.annotation.RequestMapping import org.springframework.web.bind.annotation.RestController @RequestMapping("/test") @RestController class TestController { @GetMapping fun testGet(): Boolean { logger.info("GET /test") return true } companion object : KLogging() }