Skip to content

Commit

Permalink
style: HealthCheck 반환값
Browse files Browse the repository at this point in the history
  • Loading branch information
Shin-Jae-Yoon committed Sep 10, 2023
1 parent 85058c3 commit f6340bb
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,7 @@ public void login(@RequestBody @Valid LogInReq logInReq, HttpServletResponse res

@GetMapping
@ResponseStatus(HttpStatus.OK)
public void healthCheck() { /* HealthCheck Root Path */ }
public String healthCheck() {
return "Health Check Success";
}
}

0 comments on commit f6340bb

Please sign in to comment.