Skip to content

Commit 5cea699

Browse files
authored
Merge pull request #78 from FortuneMon/feature/#77-서버-연결-확인-api-구현
pr 서버 연결 check api구현
2 parents 774e664 + b2bc362 commit 5cea699

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package FortuneMonBackEnd.fortuneMon.controller;
2+
3+
import org.springframework.web.bind.annotation.GetMapping;
4+
import org.springframework.web.bind.annotation.RequestMapping;
5+
import org.springframework.web.bind.annotation.RestController;
6+
7+
@RestController
8+
@RequestMapping("/healthCheck")
9+
public class HealthCheckController {
10+
11+
@GetMapping
12+
public String healthCheck() {
13+
return "Server is running!";
14+
15+
}

0 commit comments

Comments
 (0)