This commit is contained in:
@@ -7,11 +7,11 @@ import org.springframework.web.bind.annotation.RestController
|
|||||||
class Health {
|
class Health {
|
||||||
@GetMapping("/health")
|
@GetMapping("/health")
|
||||||
fun health(): Map<String, String> {
|
fun health(): Map<String, String> {
|
||||||
return mapOf("status" to "ok")
|
return mapOf("status" to "ok Testing Health....")
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/")
|
@GetMapping("/")
|
||||||
fun root(): Map<String, String> {
|
fun root(): Map<String, String> {
|
||||||
return mapOf("status" to "ok")
|
return mapOf("status" to "Hello World!")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user