mirror of
https://github.com/misenhower/splatoon3.ink.git
synced 2026-03-21 17:54:13 -05:00
7 lines
173 B
JavaScript
7 lines
173 B
JavaScript
import { CronJob } from "cron";
|
|
import { warmCache } from "./splatnet/index.mjs";
|
|
|
|
export default function() {
|
|
new CronJob('5,20,35,50 * * * *', warmCache, null, true);
|
|
}
|