Skip to content

Commit

Permalink
feat: healthCheck api 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
kurly-dongho committed Mar 16, 2024
1 parent f9a78cb commit 337ebf1
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/main/java/com/dnd/modutime/config/HealthCheckController.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.dnd.modutime.config;

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

@RestController
public class HealthCheckController {

@GetMapping("/aws")
public ResponseEntity<Void> healthCheck() {
return ResponseEntity.ok().build();
}
}

0 comments on commit 337ebf1

Please sign in to comment.