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