Skip to content

Commit d6962c4

Browse files
committed
[ci/#26]: health check 설정
1 parent 4a8312e commit d6962c4

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package com.wekids.baas.aws;
2+
3+
import org.springframework.web.bind.annotation.GetMapping;
4+
import org.springframework.web.bind.annotation.RestController;
5+
6+
@RestController
7+
public class HealthController {
8+
@GetMapping("/health")
9+
public String healthCheck() {
10+
return "I'm healthy";
11+
}
12+
}

0 commit comments

Comments
 (0)