Skip to content

Commit

Permalink
Merge pull request #45 from Happy-HOBAK/feat/#30
Browse files Browse the repository at this point in the history
[#30] HealthCheckController ์ถ”๊ฐ€
  • Loading branch information
yel-m authored May 3, 2024
2 parents 103781a + 3b4afb6 commit 9263af7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.hobak.happinessql.global.infra.s3;
package com.hobak.happinessql.global.infra.aws;

import com.amazonaws.services.s3.AmazonS3;
import com.amazonaws.services.s3.model.CannedAccessControlList;
Expand Down
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 9263af7

Please sign in to comment.