Files
TrisolarisServer/src/main/kotlin/com/android/trisolarisserver/controller/Health.kt
androidlover5842 671922b363
Some checks failed
build-and-deploy / build-deploy (push) Has been cancelled
testing deployment..
2026-01-26 18:00:25 +05:30

18 lines
449 B
Kotlin

package com.android.trisolarisserver.controller
import org.springframework.web.bind.annotation.GetMapping
import org.springframework.web.bind.annotation.RestController
@RestController
class Health {
@GetMapping("/health")
fun health(): Map<String, String> {
return mapOf("status" to "ok Testing Health....")
}
@GetMapping("/")
fun root(): Map<String, String> {
return mapOf("status" to "Hello World!")
}
}