Skip to content

Commit

Permalink
Merge pull request #336 from WE-ARE-RACCOONS/RAC-478
Browse files Browse the repository at this point in the history
RAC-478 feat : healthCheck
  • Loading branch information
ywj9811 authored Jan 14, 2025
2 parents 2cd8f1a + e8ac32b commit 81e8eef
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/main/java/com/postgraduate/global/health/HealthCheck.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.postgraduate.global.health;

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

@RestController
public class HealthCheck {
@GetMapping("/")
public void healthCheck() {

}
}

0 comments on commit 81e8eef

Please sign in to comment.