Skip to content

Commit

Permalink
feat: 로드밸런서 health check를 위한 컨트롤러 구현 - #71
Browse files Browse the repository at this point in the history
  • Loading branch information
Dh3356 committed Feb 23, 2024
1 parent f601163 commit bebd6e5
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 org.mjulikelion.bagel.controller;

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 bebd6e5

Please sign in to comment.