From 115c9eb2e903de129783c74ab94fb34e0d052c49 Mon Sep 17 00:00:00 2001 From: seokjin8678 Date: Wed, 17 Apr 2024 01:43:32 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20SchoolFestivalsV1CacheInvalidateSchedu?= =?UTF-8?q?ler=20=ED=8C=A8=ED=82=A4=EC=A7=80=20=EC=9C=84=EC=B9=98=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 --- .../v1}/SchoolFestivalsV1CacheInvalidateScheduler.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) rename backend/src/main/java/com/festago/school/{infrastructure => application/v1}/SchoolFestivalsV1CacheInvalidateScheduler.java (81%) diff --git a/backend/src/main/java/com/festago/school/infrastructure/SchoolFestivalsV1CacheInvalidateScheduler.java b/backend/src/main/java/com/festago/school/application/v1/SchoolFestivalsV1CacheInvalidateScheduler.java similarity index 81% rename from backend/src/main/java/com/festago/school/infrastructure/SchoolFestivalsV1CacheInvalidateScheduler.java rename to backend/src/main/java/com/festago/school/application/v1/SchoolFestivalsV1CacheInvalidateScheduler.java index 589db6aea..b2997b80c 100644 --- a/backend/src/main/java/com/festago/school/infrastructure/SchoolFestivalsV1CacheInvalidateScheduler.java +++ b/backend/src/main/java/com/festago/school/application/v1/SchoolFestivalsV1CacheInvalidateScheduler.java @@ -1,15 +1,12 @@ -package com.festago.school.infrastructure; +package com.festago.school.application.v1; import com.festago.common.cache.CacheInvalidator; -import com.festago.school.application.v1.SchoolFestivalsV1QueryService; import lombok.RequiredArgsConstructor; -import lombok.extern.slf4j.Slf4j; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; @Component @RequiredArgsConstructor -@Slf4j public class SchoolFestivalsV1CacheInvalidateScheduler { private final CacheInvalidator cacheInvalidator;