This commit is contained in:
2026-03-09 06:16:36 +01:00
parent ef54906d9a
commit 40dacc0b62
52 changed files with 1922 additions and 143 deletions
+3 -1
View File
@@ -4,7 +4,9 @@ import cronCheckServices from "./functions/check-services";
while (true) {
console.log(`Running Cron Services ...`);
await cronCheckServices();
try {
await cronCheckServices();
} catch (error) {}
await Bun.sleep(AppData["CronInterval"]);
}