Skip to content

Commit

Permalink
[test] test code add
Browse files Browse the repository at this point in the history
  • Loading branch information
sunghyun1356 committed Jul 20, 2024
1 parent abec64b commit 4d0db5f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,11 @@ public ApiResponseDto<Long> linkCouple(

return coupleService.linkCouple(userDetails, inputCode);
}
@GetMapping("/test")
public Boolean test(
)
{
return coupleService.test();
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -123,5 +123,9 @@ public ApiResponseDto<Long> linkCouple(UserDetails userDetails, String inputCode

return ResponseUtils.ok(couple.getId(), ErrorResponse.builder().status(200).message("커플 생성 성공").build());
}
public Boolean test()
{
return Boolean.TRUE;
}

}

0 comments on commit 4d0db5f

Please sign in to comment.