Newer
Older
sample-kotlin-spring1 / src / main / kotlin / Hello.kt
@yhornisse yhornisse on 3 Jun 2023 253 bytes move
package com.example.sample.controller

import org.springframework.web.bind.annotation.GetMapping
import org.springframework.web.bind.annotation.RestController

@RestController
class Hello {
    @GetMapping("/hello")
    fun sample(): String = "Hello"
}