Skip to content

Commit

Permalink
test: 테스트 컨트롤러 작성
Browse files Browse the repository at this point in the history
  • Loading branch information
haeun1107 committed Aug 2, 2024
1 parent 0f78e0a commit e64c9aa
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,9 @@ private Long extractMemberIdFromToken(String token) {
String memberId = JwtTokenUtil.getLoginId(jwtToken);
return Long.valueOf(memberId); // 추출한 memberId를 Long 타입으로 변환
}

@GetMapping("/hi")
private String test() {
return "success!";
}
}

0 comments on commit e64c9aa

Please sign in to comment.