Skip to content

Commit

Permalink
Merge branch 'feature/ISSUE-56' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
stopmin committed Jul 18, 2024
2 parents b3a5a9f + d30f469 commit ff63003
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/java/gyeongdan/common/HealthCheckController.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
package gyeongdan.common;

import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HealthCheckController {

@GetMapping("/health")
public String healthCheck() {
return "OK";
public ResponseEntity<String> healthCheck() {
return ResponseEntity.ok("OK");
}

}

0 comments on commit ff63003

Please sign in to comment.