testing deployment..
Some checks failed
build-and-deploy / build-deploy (push) Has been cancelled

This commit is contained in:
androidlover5842
2026-01-26 18:00:25 +05:30
parent 41299e6071
commit 671922b363

View File

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