Skip to content

Commit

Permalink
👷 Init: HTTPS Health Check 응답 추가 (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
yjsmk0902 committed May 14, 2024
1 parent 1d85bf6 commit 2af466e
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 shop.catchmind.common.presentation;

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

@RestController
public class HealthCheckController {
@GetMapping("/health")
public String health() {
return "OK!";
}
}

0 comments on commit 2af466e

Please sign in to comment.