Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,10 @@ public ResponseEntity<?> getServiceCodeList() {
public ResponseEntity<?> getRequestCodeList(@RequestBody CareRequestDto.GetRequestCodeList dto) {
return ResponseEntity.ok().body(careService.getRequestCodeList(dto));
}

@GetMapping("/healthcheck")
public String healthcheck(){ //https 인증 확인용
return "OK";
}

}
Loading