Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ehs208 committed Feb 5, 2025
2 parents bbadb95 + c6c2459 commit 33239a1
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package com.example.eatmate.global.common.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;

import io.swagger.v3.oas.annotations.Hidden;

@Hidden
@RestController
public class StatusCheckController {
@GetMapping("/health-check")
public ResponseEntity<Void> checkHealthStatus() {

return new ResponseEntity<>(HttpStatus.OK);
}
}

0 comments on commit 33239a1

Please sign in to comment.