Skip to content

Commit

Permalink
feat(HeatlCheck) : 상태 및 업데이트 확인을 위한 컨트롤러를 추가한다 (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
Due-IT authored Dec 1, 2024
1 parent c87e12a commit 2460134
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions wabi/src/main/kotlin/com/wap/wabi/common/HealthCheckController.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.wap.wabi.common

import org.springframework.web.bind.annotation.GetMapping
import org.springframework.web.bind.annotation.RestController

@RestController
class HealthCheckController {
@GetMapping("/health")
fun healthCheck(): String {
return "2024-12-01 updated"
}
}

0 comments on commit 2460134

Please sign in to comment.