Skip to content

Commit

Permalink
Feat: health check 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
yslle committed Jul 4, 2024
1 parent 0f72c57 commit 8979af2
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/main/java/com/umc/dream/TestController.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.umc.dream;

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

@RestController
public class TestController {

@GetMapping("/health")
public String healthCheck() {
return "I'm healthy!";
}

}

0 comments on commit 8979af2

Please sign in to comment.