From efbb489a807990e34fdee96128e45a57a8e16fd4 Mon Sep 17 00:00:00 2001 From: bo Date: Sat, 16 Mar 2024 23:33:14 +0900 Subject: [PATCH] =?UTF-8?q?Add:=20=EC=8A=A4=EC=BC=80=EC=A4=84=EB=9F=AC=20?= =?UTF-8?q?=EC=84=A4=EC=A0=95=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../global/config/scheduler/SchedulerConfig.java | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/main/java/com/project/bumawiki/global/config/scheduler/SchedulerConfig.java diff --git a/src/main/java/com/project/bumawiki/global/config/scheduler/SchedulerConfig.java b/src/main/java/com/project/bumawiki/global/config/scheduler/SchedulerConfig.java new file mode 100644 index 00000000..45314d4d --- /dev/null +++ b/src/main/java/com/project/bumawiki/global/config/scheduler/SchedulerConfig.java @@ -0,0 +1,9 @@ +package com.project.bumawiki.global.config.scheduler; + +import org.springframework.context.annotation.Configuration; +import org.springframework.scheduling.annotation.EnableScheduling; + +@Configuration +@EnableScheduling +public class SchedulerConfig { +}