Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/Chat-ITC/WithYou
Browse files Browse the repository at this point in the history
  • Loading branch information
dnjsqls5973 committed Nov 8, 2023
2 parents afea4b5 + 3f4cd20 commit de0824b
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
import WithYou.domain.member.service.MemberService;
import WithYou.global.jwt.MemberPrincipal;
import javax.validation.Valid;

import lombok.Getter;
import lombok.RequiredArgsConstructor;
import org.springframework.http.ResponseEntity;
import org.springframework.security.core.annotation.AuthenticationPrincipal;
Expand All @@ -23,8 +21,9 @@ public class MemberController {
private final AiService aiService;

@GetMapping("/")
public ResponseEntity<String> rootController(){
return ResponseEntity.ok("연결성공");
public ResponseEntity<String> rootController() {
return ResponseEntity.ok()
.build();
}

@PatchMapping("/member/update")
Expand Down

0 comments on commit de0824b

Please sign in to comment.