Skip to content

Commit

Permalink
feat: health check
Browse files Browse the repository at this point in the history
  • Loading branch information
seoyoung7623 committed Aug 2, 2024
1 parent af4cb45 commit 8128d1a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/main/java/wecloud/wishpool/domain/health/HealthController.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package wecloud.wishpool.domain.health;

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

@RestController
public class HealthController {
@GetMapping("/health")
public String health() {
return "ok";
}
}

0 comments on commit 8128d1a

Please sign in to comment.