Skip to content

Commit 81e8eef

Browse files
authored
Merge pull request #336 from WE-ARE-RACCOONS/RAC-478
RAC-478 feat : healthCheck
2 parents 2cd8f1a + e8ac32b commit 81e8eef

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package com.postgraduate.global.health;
2+
3+
import org.springframework.web.bind.annotation.GetMapping;
4+
import org.springframework.web.bind.annotation.RestController;
5+
6+
@RestController
7+
public class HealthCheck {
8+
@GetMapping("/")
9+
public void healthCheck() {
10+
11+
}
12+
}

0 commit comments

Comments
 (0)