bunext/dist/functions/server/cron.js
2026-03-18 17:37:24 +01:00

9 lines
252 B
JavaScript

import { AppData } from "../../data/app-data";
import trimAllCache from "../cache/trim-all-cache";
export default async function cron() {
while (true) {
await trimAllCache();
await Bun.sleep(AppData["DefaultCronInterval"]);
}
}