Skip to content

Commit

Permalink
🧩 :: (#develop) health check
Browse files Browse the repository at this point in the history
  • Loading branch information
tedsoftj1123 committed Jan 8, 2024
1 parent 4be85cc commit 41cb64e
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package team.retum.jobis.domain;

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

@RestController
public class HealthCheckWebAdapter {

@GetMapping
public String healthCheck() {
return "OK";
}
}

0 comments on commit 41cb64e

Please sign in to comment.