Skip to content

Commit efa4c08

Browse files
committed
refactor: dto 디렉토리 구조 변경
1 parent fb61a13 commit efa4c08

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/main/java/com/example/customschatbotbe/domain/chatbot/controller/ChatBotController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package com.example.customschatbotbe.domain.chatbot.controller;
22

33
import com.example.customschatbotbe.domain.chatbot.service.ChatBotService;
4-
import com.example.customschatbotbe.domain.dto.request.ChatRequest;
5-
import com.example.customschatbotbe.domain.dto.response.ChatResponse;
4+
import com.example.customschatbotbe.domain.chatbot.dto.request.ChatRequest;
5+
import com.example.customschatbotbe.domain.chatbot.dto.response.ChatResponse;
66
import com.example.customschatbotbe.global.exception.response.ApiResponse;
77
import lombok.RequiredArgsConstructor;
88
import org.springframework.http.ResponseEntity;

src/main/java/com/example/customschatbotbe/domain/dto/request/ChatRequest.java renamed to src/main/java/com/example/customschatbotbe/domain/chatbot/dto/request/ChatRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.example.customschatbotbe.domain.dto.request;
1+
package com.example.customschatbotbe.domain.chatbot.dto.request;
22

33
import lombok.Getter;
44
import lombok.Setter;

src/main/java/com/example/customschatbotbe/domain/dto/response/ChatResponse.java renamed to src/main/java/com/example/customschatbotbe/domain/chatbot/dto/response/ChatResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.example.customschatbotbe.domain.dto.response;
1+
package com.example.customschatbotbe.domain.chatbot.dto.response;
22

33
import com.example.customschatbotbe.global.ProgressDetail;
44
import lombok.Builder;

src/main/java/com/example/customschatbotbe/domain/chatbot/service/ChatBotService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.example.customschatbotbe.domain.chatbot.service;
22

3-
import com.example.customschatbotbe.domain.dto.request.ChatRequest;
4-
import com.example.customschatbotbe.domain.dto.response.ChatResponse;
3+
import com.example.customschatbotbe.domain.chatbot.dto.request.ChatRequest;
4+
import com.example.customschatbotbe.domain.chatbot.dto.response.ChatResponse;
55
import com.example.customschatbotbe.global.exception.BusinessException;
66
import com.example.customschatbotbe.global.exception.enums.ErrorCode;
77
import lombok.RequiredArgsConstructor;

0 commit comments

Comments
 (0)