feat : home API 추가

This commit is contained in:
banjjoknim
2022-03-25 03:10:02 +09:00
parent 16512c7d81
commit bb1945b669

View File

@@ -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>"
}
}