Skip to content

Commit

Permalink
chore: CD 테스트를 위한 healthCheckController 임시 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
whereami2048 committed May 2, 2024
1 parent ca8957a commit 75d3c91
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.bamyanggang.apimodule

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

@RestController
class HealthCheckController {
@GetMapping("")
fun healthCheck(): String {
return "OK"
}
}

0 comments on commit 75d3c91

Please sign in to comment.