Skip to content

Commit

Permalink
Feat: health-check api 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
tioon committed Apr 25, 2024
1 parent 8c0c6f1 commit 80d5248
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package com.web.baebaeBE.presentation.healthcheck;

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

@RestController
public class HealthCheckController {

@GetMapping("/healthcheck")
public String healthCheck() {
return "OK"; // 서버가 정상적으로 작동 중임을 의미
}
}

0 comments on commit 80d5248

Please sign in to comment.