From a21f5cf3968c19ba6f350f573da1284d236692e7 Mon Sep 17 00:00:00 2001 From: Daybreak312 Date: Fri, 1 Dec 2023 15:14:13 +0900 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=20::=20=ED=8C=A8=ED=82=A4=EC=A7=80=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../auth/{google => }/dto/response/GoogleInfoResponse.kt | 2 +- .../com/info/maeumgagym/auth/port/out/GetGoogleInfoPort.kt | 2 +- .../com/info/maeumgagym/auth/adapter/GoogleAuthAdapter.kt | 2 +- .../com/info/maeumgagym/feign/oauth/google/GoogleInfoClient.kt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename maeumgagym-core/src/main/kotlin/com/info/maeumgagym/auth/{google => }/dto/response/GoogleInfoResponse.kt (81%) diff --git a/maeumgagym-core/src/main/kotlin/com/info/maeumgagym/auth/google/dto/response/GoogleInfoResponse.kt b/maeumgagym-core/src/main/kotlin/com/info/maeumgagym/auth/dto/response/GoogleInfoResponse.kt similarity index 81% rename from maeumgagym-core/src/main/kotlin/com/info/maeumgagym/auth/google/dto/response/GoogleInfoResponse.kt rename to maeumgagym-core/src/main/kotlin/com/info/maeumgagym/auth/dto/response/GoogleInfoResponse.kt index 43618434a..8cf345791 100644 --- a/maeumgagym-core/src/main/kotlin/com/info/maeumgagym/auth/google/dto/response/GoogleInfoResponse.kt +++ b/maeumgagym-core/src/main/kotlin/com/info/maeumgagym/auth/dto/response/GoogleInfoResponse.kt @@ -1,4 +1,4 @@ -package com.info.maeumgagym.auth.google.dto.response +package com.info.maeumgagym.auth.dto.response data class GoogleInfoResponse( val sub: String, diff --git a/maeumgagym-core/src/main/kotlin/com/info/maeumgagym/auth/port/out/GetGoogleInfoPort.kt b/maeumgagym-core/src/main/kotlin/com/info/maeumgagym/auth/port/out/GetGoogleInfoPort.kt index c1983c235..d6cdb388c 100644 --- a/maeumgagym-core/src/main/kotlin/com/info/maeumgagym/auth/port/out/GetGoogleInfoPort.kt +++ b/maeumgagym-core/src/main/kotlin/com/info/maeumgagym/auth/port/out/GetGoogleInfoPort.kt @@ -1,6 +1,6 @@ package com.info.maeumgagym.auth.port.out -import com.info.maeumgagym.auth.google.dto.response.GoogleInfoResponse +import com.info.maeumgagym.auth.dto.response.GoogleInfoResponse interface GetGoogleInfoPort { diff --git a/maeumgagym-infrastructure/src/main/kotlin/com/info/maeumgagym/auth/adapter/GoogleAuthAdapter.kt b/maeumgagym-infrastructure/src/main/kotlin/com/info/maeumgagym/auth/adapter/GoogleAuthAdapter.kt index 4d2e825cf..6360c6d4e 100644 --- a/maeumgagym-infrastructure/src/main/kotlin/com/info/maeumgagym/auth/adapter/GoogleAuthAdapter.kt +++ b/maeumgagym-infrastructure/src/main/kotlin/com/info/maeumgagym/auth/adapter/GoogleAuthAdapter.kt @@ -1,7 +1,7 @@ package com.info.maeumgagym.auth.adapter import com.info.common.WebAdapter -import com.info.maeumgagym.auth.google.dto.response.GoogleInfoResponse +import com.info.maeumgagym.auth.dto.response.GoogleInfoResponse import com.info.maeumgagym.auth.port.out.GetGoogleInfoPort import com.info.maeumgagym.feign.oauth.google.GoogleInfoClient diff --git a/maeumgagym-infrastructure/src/main/kotlin/com/info/maeumgagym/feign/oauth/google/GoogleInfoClient.kt b/maeumgagym-infrastructure/src/main/kotlin/com/info/maeumgagym/feign/oauth/google/GoogleInfoClient.kt index 6bff38ea4..4f2865635 100644 --- a/maeumgagym-infrastructure/src/main/kotlin/com/info/maeumgagym/feign/oauth/google/GoogleInfoClient.kt +++ b/maeumgagym-infrastructure/src/main/kotlin/com/info/maeumgagym/feign/oauth/google/GoogleInfoClient.kt @@ -1,6 +1,6 @@ package com.info.maeumgagym.feign.oauth.google -import com.info.maeumgagym.auth.google.dto.response.GoogleInfoResponse +import com.info.maeumgagym.auth.dto.response.GoogleInfoResponse import com.info.maeumgagym.global.config.feign.FeignConfig import org.springframework.cloud.openfeign.FeignClient import org.springframework.web.bind.annotation.GetMapping