mirror of
https://github.com/misenhower/splatoon3.ink.git
synced 2026-04-24 14:56:52 -05:00
16 lines
516 B
JavaScript
16 lines
516 B
JavaScript
import { CronJob } from "cron";
|
|
import { updatePrimary, updateLowPriority } from "./data/index.mjs";
|
|
import { warmCaches } from "./splatnet/index.mjs";
|
|
import { sendStatuses } from "./social/index.mjs";
|
|
|
|
export default function() {
|
|
new CronJob('5,20,35,50 * * * *', warmCaches, null, true);
|
|
new CronJob('15 0,2,5,10,15,30,45 * * * *', async () => {
|
|
await updatePrimary();
|
|
await sendStatuses();
|
|
}, null, true);
|
|
new CronJob('1 * * * *', async () => {
|
|
await updateLowPriority();
|
|
}, null, true);
|
|
}
|