Skip to content

Commit

Permalink
👷 add test code
Browse files Browse the repository at this point in the history
  • Loading branch information
soyeon207 authored Nov 8, 2023
1 parent 1f5670c commit 072c009
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
public class MemberController {
private final MemberService memberService;

@GetMapping("/test")
public String test() {
return "test";
}

// 로그인이나 출석정보AttendanceGetRequest
@PostMapping("/login")
public ApiResponse login(@RequestBody LoginRequest request) {
Expand All @@ -37,4 +42,4 @@ public ApiResponse getQuizzes(String token) {
return memberService.getQuizzes(token);
}

}
}

0 comments on commit 072c009

Please sign in to comment.