We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a8312e commit d6962c4Copy full SHA for d6962c4
src/main/java/com/wekids/baas/aws/HealthController.java
@@ -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