feat : home API 추가
This commit is contained in:
@@ -0,0 +1,13 @@
|
|||||||
|
package com.banjjoknim.playground.domain.home
|
||||||
|
|
||||||
|
import org.springframework.web.bind.annotation.GetMapping
|
||||||
|
import org.springframework.web.bind.annotation.RestController
|
||||||
|
|
||||||
|
@RestController
|
||||||
|
class HomeApiController {
|
||||||
|
|
||||||
|
@GetMapping("/home")
|
||||||
|
fun home(): String {
|
||||||
|
return "<h1>home</h1>"
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user