From afbecacbe8a8a9ced34caf9244054657987b1f49 Mon Sep 17 00:00:00 2001 From: squall7011 Date: Sun, 19 Nov 2023 16:22:11 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20::?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/example/onui/domain/diary/service/DiaryService.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/com/example/onui/domain/diary/service/DiaryService.kt b/src/main/kotlin/com/example/onui/domain/diary/service/DiaryService.kt index 7548a4d..d30e4f0 100644 --- a/src/main/kotlin/com/example/onui/domain/diary/service/DiaryService.kt +++ b/src/main/kotlin/com/example/onui/domain/diary/service/DiaryService.kt @@ -3,6 +3,7 @@ import com.example.onui.domain.diary.presentation.request.ChattingWithGPTRequest import com.example.onui.domain.diary.presentation.request.CreateDiaryRequest import com.example.onui.domain.diary.presentation.request.UpdateDiaryRequest +import com.example.onui.domain.diary.presentation.response.ChattingResponse import com.example.onui.domain.diary.presentation.response.DiaryDetailResponse import com.example.onui.domain.diary.presentation.response.DiaryListResponse import java.time.LocalDate @@ -19,5 +20,5 @@ interface DiaryService { fun getSevenDaysAgo(): DiaryListResponse - fun chattingWithGPT(req: ChattingWithGPTRequest): ChattingWithGPTRequest + fun chattingWithGPT(req: ChattingWithGPTRequest): ChattingResponse }