diff --git a/simtong-application/src/main/kotlin/team/comit/simtong/domain/schedule/spi/CheckFilePort.kt b/simtong-application/src/main/kotlin/team/comit/simtong/domain/file/spi/CheckFilePort.kt similarity index 80% rename from simtong-application/src/main/kotlin/team/comit/simtong/domain/schedule/spi/CheckFilePort.kt rename to simtong-application/src/main/kotlin/team/comit/simtong/domain/file/spi/CheckFilePort.kt index c5c2be71..d6383355 100644 --- a/simtong-application/src/main/kotlin/team/comit/simtong/domain/schedule/spi/CheckFilePort.kt +++ b/simtong-application/src/main/kotlin/team/comit/simtong/domain/file/spi/CheckFilePort.kt @@ -1,4 +1,4 @@ -package team.comit.simtong.domain.schedule.spi +package team.comit.simtong.domain.file.spi /** * diff --git a/simtong-application/src/main/kotlin/team/comit/simtong/domain/user/usecase/ChangeProfileImageUseCase.kt b/simtong-application/src/main/kotlin/team/comit/simtong/domain/user/usecase/ChangeProfileImageUseCase.kt index 75631ecd..2b174310 100644 --- a/simtong-application/src/main/kotlin/team/comit/simtong/domain/user/usecase/ChangeProfileImageUseCase.kt +++ b/simtong-application/src/main/kotlin/team/comit/simtong/domain/user/usecase/ChangeProfileImageUseCase.kt @@ -1,7 +1,7 @@ package team.comit.simtong.domain.user.usecase import team.comit.simtong.domain.file.exception.FileExceptions -import team.comit.simtong.domain.schedule.spi.CheckFilePort +import team.comit.simtong.domain.file.spi.CheckFilePort import team.comit.simtong.domain.user.dto.ChangeProfileImageRequest import team.comit.simtong.domain.user.exception.UserExceptions import team.comit.simtong.domain.user.spi.CommandUserPort diff --git a/simtong-application/src/test/kotlin/team/comit/simtong/domain/user/usecase/ChangeProfileImageUseCaseTests.kt b/simtong-application/src/test/kotlin/team/comit/simtong/domain/user/usecase/ChangeProfileImageUseCaseTests.kt index ac2dcda4..ff51ac0a 100644 --- a/simtong-application/src/test/kotlin/team/comit/simtong/domain/user/usecase/ChangeProfileImageUseCaseTests.kt +++ b/simtong-application/src/test/kotlin/team/comit/simtong/domain/user/usecase/ChangeProfileImageUseCaseTests.kt @@ -7,7 +7,7 @@ import org.junit.jupiter.api.assertThrows import org.mockito.BDDMockito.given import org.springframework.boot.test.mock.mockito.MockBean import team.comit.simtong.domain.file.exception.FileExceptions -import team.comit.simtong.domain.schedule.spi.CheckFilePort +import team.comit.simtong.domain.file.spi.CheckFilePort import team.comit.simtong.domain.user.dto.ChangeProfileImageRequest import team.comit.simtong.domain.user.exception.UserExceptions import team.comit.simtong.domain.user.model.Authority diff --git a/simtong-infrastructure/src/main/kotlin/team/comit/simtong/thirdparty/storage/AwsS3Adapter.kt b/simtong-infrastructure/src/main/kotlin/team/comit/simtong/thirdparty/storage/AwsS3Adapter.kt index 105a7ed3..42fbd820 100644 --- a/simtong-infrastructure/src/main/kotlin/team/comit/simtong/thirdparty/storage/AwsS3Adapter.kt +++ b/simtong-infrastructure/src/main/kotlin/team/comit/simtong/thirdparty/storage/AwsS3Adapter.kt @@ -7,7 +7,7 @@ import com.amazonaws.services.s3.model.ObjectMetadata import com.amazonaws.services.s3.model.PutObjectRequest import org.springframework.stereotype.Component import team.comit.simtong.domain.file.exception.FileExceptions -import team.comit.simtong.domain.schedule.spi.CheckFilePort +import team.comit.simtong.domain.file.spi.CheckFilePort import team.comit.simtong.domain.file.spi.UploadFilePort import java.io.File import java.io.IOException