From 81252294df1bdcfff3b813e594dadcbfd6f9baaf Mon Sep 17 00:00:00 2001 From: pricelees Date: Sun, 27 Jul 2025 23:54:32 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=8C=A8=ED=82=A4=EC=A7=80=EB=AA=85=20?= =?UTF-8?q?=EC=BB=A8=EB=B2=A4=EC=85=98=20=ED=86=B5=EC=9D=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../kotlin/roomescape/auth/{service => business}/AuthService.kt | 2 +- src/main/kotlin/roomescape/auth/web/AuthController.kt | 2 +- src/test/kotlin/roomescape/auth/business/AuthServiceTest.kt | 1 - src/test/kotlin/roomescape/auth/web/AuthControllerTest.kt | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) rename src/main/kotlin/roomescape/auth/{service => business}/AuthService.kt (98%) diff --git a/src/main/kotlin/roomescape/auth/service/AuthService.kt b/src/main/kotlin/roomescape/auth/business/AuthService.kt similarity index 98% rename from src/main/kotlin/roomescape/auth/service/AuthService.kt rename to src/main/kotlin/roomescape/auth/business/AuthService.kt index 3af56104..21619524 100644 --- a/src/main/kotlin/roomescape/auth/service/AuthService.kt +++ b/src/main/kotlin/roomescape/auth/business/AuthService.kt @@ -1,4 +1,4 @@ -package roomescape.auth.service +package roomescape.auth.business import io.github.oshai.kotlinlogging.KLogger import io.github.oshai.kotlinlogging.KotlinLogging diff --git a/src/main/kotlin/roomescape/auth/web/AuthController.kt b/src/main/kotlin/roomescape/auth/web/AuthController.kt index 6e28741a..7f3f1cc8 100644 --- a/src/main/kotlin/roomescape/auth/web/AuthController.kt +++ b/src/main/kotlin/roomescape/auth/web/AuthController.kt @@ -8,7 +8,7 @@ import org.springframework.web.bind.annotation.PostMapping import org.springframework.web.bind.annotation.RequestBody import org.springframework.web.bind.annotation.RestController import roomescape.auth.docs.AuthAPI -import roomescape.auth.service.AuthService +import roomescape.auth.business.AuthService import roomescape.auth.web.support.MemberId import roomescape.common.dto.response.CommonApiResponse diff --git a/src/test/kotlin/roomescape/auth/business/AuthServiceTest.kt b/src/test/kotlin/roomescape/auth/business/AuthServiceTest.kt index 2b4c6a5b..587d1ded 100644 --- a/src/test/kotlin/roomescape/auth/business/AuthServiceTest.kt +++ b/src/test/kotlin/roomescape/auth/business/AuthServiceTest.kt @@ -10,7 +10,6 @@ import org.springframework.data.repository.findByIdOrNull import roomescape.auth.exception.AuthErrorCode import roomescape.auth.exception.AuthException import roomescape.auth.infrastructure.jwt.JwtHandler -import roomescape.auth.service.AuthService import roomescape.member.business.MemberService import roomescape.member.infrastructure.persistence.MemberEntity import roomescape.member.infrastructure.persistence.MemberRepository diff --git a/src/test/kotlin/roomescape/auth/web/AuthControllerTest.kt b/src/test/kotlin/roomescape/auth/web/AuthControllerTest.kt index 4861f4ba..c9cf0bcc 100644 --- a/src/test/kotlin/roomescape/auth/web/AuthControllerTest.kt +++ b/src/test/kotlin/roomescape/auth/web/AuthControllerTest.kt @@ -7,7 +7,7 @@ import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest import org.springframework.data.repository.findByIdOrNull import org.springframework.test.web.servlet.MockMvc import roomescape.auth.exception.AuthErrorCode -import roomescape.auth.service.AuthService +import roomescape.auth.business.AuthService import roomescape.common.exception.CommonErrorCode import roomescape.common.exception.ErrorCode import roomescape.util.MemberFixture