Skip to content

Commit

Permalink
refator: cd healthy check api ์ถ”๊ฐ€
Browse files Browse the repository at this point in the history
  • Loading branch information
kimsongmok committed Oct 24, 2024
1 parent 1fc7884 commit 8500bc3
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package com.splanet.splanet.core.controller;

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

@RestController
public class StatusCheckController {

@GetMapping("/health-check")
public ResponseEntity<Void> checkHealthStatus() {
return new ResponseEntity<>(HttpStatus.OK);
}
}

0 comments on commit 8500bc3

Please sign in to comment.