Skip to content

Commit

Permalink
feat : HealthCheckController ์ถ”๊ฐ€
Browse files Browse the repository at this point in the history
  • Loading branch information
yel-m committed May 3, 2024
1 parent 81a3f3e commit 3b4afb6
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.hobak.happinessql.global.infra.aws;

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

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

0 comments on commit 3b4afb6

Please sign in to comment.