|
4 | 4 | import io.swagger.v3.oas.annotations.tags.Tag; |
5 | 5 | import jakarta.servlet.http.HttpSession; |
6 | 6 | import jakarta.validation.Valid; |
7 | | -import java.util.List; |
8 | | -import java.util.UUID; |
9 | 7 | import lombok.RequiredArgsConstructor; |
10 | 8 | import lombok.extern.slf4j.Slf4j; |
11 | | -import org.springframework.web.bind.annotation.GetMapping; |
12 | | -import org.springframework.web.bind.annotation.PatchMapping; |
13 | | -import org.springframework.web.bind.annotation.PathVariable; |
14 | | -import org.springframework.web.bind.annotation.PostMapping; |
15 | | -import org.springframework.web.bind.annotation.RequestBody; |
16 | | -import org.springframework.web.bind.annotation.RequestMapping; |
17 | | -import org.springframework.web.bind.annotation.RequestParam; |
18 | | -import org.springframework.web.bind.annotation.RestController; |
19 | | -import org.springframework.web.bind.annotation.SessionAttribute; |
| 9 | +import org.springframework.web.bind.annotation.*; |
20 | 10 | import swyp.mingling.domain.meeting.dto.request.CreateDepartureRequest; |
21 | 11 | import swyp.mingling.domain.meeting.dto.request.CreateMeetingRequest; |
22 | 12 | import swyp.mingling.domain.meeting.dto.request.UpdateDepartureRequest; |
23 | | -import swyp.mingling.domain.meeting.dto.response.CreateDepartureResponse; |
24 | | -import swyp.mingling.domain.meeting.dto.response.CreateMeetingResponse; |
25 | | -import swyp.mingling.domain.meeting.dto.response.GetMeetingStatusResponse; |
26 | | -import swyp.mingling.domain.meeting.dto.response.GetMidpointResponse; |
27 | | -import swyp.mingling.domain.meeting.dto.response.RecommendResponse; |
28 | | -import swyp.mingling.domain.meeting.dto.response.ResultMeetingResponse; |
29 | | -import swyp.mingling.domain.meeting.dto.response.UpdateDepartureResponse; |
30 | | -import swyp.mingling.domain.meeting.service.CreateDepartureUseCase; |
31 | | -import swyp.mingling.domain.meeting.service.CreateMeetingUseCase; |
32 | | -import swyp.mingling.domain.meeting.service.GetMeetingStatusUseCase; |
33 | | -import swyp.mingling.domain.meeting.service.RecommendPlaceUseCase; |
34 | | -import swyp.mingling.domain.meeting.service.ResultMeetingUseCase; |
35 | | -import swyp.mingling.domain.meeting.service.UpdateDepartureUseCase; |
| 13 | +import swyp.mingling.domain.meeting.dto.response.*; |
| 14 | +import swyp.mingling.domain.meeting.service.*; |
36 | 15 | import swyp.mingling.global.documentation.MeetingApiDocumentation; |
37 | 16 | import swyp.mingling.global.response.ApiResponse; |
38 | 17 |
|
| 18 | +import java.util.List; |
| 19 | +import java.util.UUID; |
| 20 | + |
39 | 21 | /** |
40 | 22 | * 모임 관련 API 컨트롤러 |
41 | 23 | */ |
42 | 24 | @Slf4j |
43 | 25 | @Tag(name = "모임 API", description = "모임 생성 및 관리 API") |
44 | 26 | @RestController |
45 | | -@RequestMapping("/api/meeting") |
| 27 | +@RequestMapping("/meeting") |
46 | 28 | @RequiredArgsConstructor |
47 | 29 | public class MeetingController { |
48 | 30 |
|
|
0 commit comments